Plugin Directory

Changeset 1226392


Ignore:
Timestamp:
08/20/2015 05:06:53 PM (11 years ago)
Author:
fdoromo
Message:

tags/3.3

Location:
total-security
Files:
76 added
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • total-security/trunk/modules/inc-sidebar.php

    r1144849 r1226392  
    2727
    2828//----------------------------------------
    29 echo '<div class="postbox"><div class="handlediv" title="'.__('Click to toggle', $this->hook) .'"><br /></div><h3 class="hndle"><span>'. __( 'Notices', $this->hook ) . '</span></h3>';
    30 echo '<div class="inside">';
    3129
    32 $rss = @fetch_feed( $this->sbar_rss );
    33      if ( is_object($rss) ) {
    34         if ( is_wp_error($rss) ) {
    35             echo 'Newsfeed could not be loaded.';
    36            } else {
    37 echo '<ul class="sidebnews">';
    38         foreach ( $rss->get_items(0, 5) as $item ) {
    39             $link = $item->get_link();
    40             while ( stristr($link, 'http') != $link )
    41                 $link = substr($link, 1);
    42             $link = esc_url(strip_tags($link));
    43             $title = esc_attr(strip_tags($item->get_title()));
    44             if ( empty($title) )
    45                 $title = __('Untitled');
    46             $date = $item->get_date();
    47             $diff = '';
    48             if ( $date ) {
    49                 $diff = human_time_diff( strtotime($date, time()) );
    50                 if ( $date_stamp = strtotime( $date ) )
    51                     $date =  date_i18n( get_option( 'date_format' ), $date_stamp );
    52                 else
    53                     $date = '';
    54             }
    55 echo '<li><a title="'. $date .'" target="_blank" href="'. $link .'">'. $title.' <em class="none">'. $diff.'</em></a></li>';
    56     }
    57        echo'</ul>';
    58    } // if feed error
    59 }
    60 echo '</div></div>';
    6130//----------------------------------------
    6231echo '</div></div>';
  • total-security/trunk/readme.txt

    r1209364 r1226392  
    44Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=8DHY4NXW35T4Y
    55Tags: security, scan ,scanner, hack, exploit, secure, malware, phishing, vulnerability, scours, unsafe, total, 404 log, error 404, stealth login, hidden login, Bookmarklet,Log Viewer, debug.log
    6 Requires at least: 4.2.3
    7 Tested up to: 4.2.3
    8 Stable tag: 3.2.7
     6Requires at least: 4.3
     7Tested up to: 4.3
     8Stable tag: 3.3
    99License: GPLv2 or later
    1010
     
    128128
    129129== Changelog ==
     130* 3.3
     131    * IMPROVED - Compatibility with WordPress 4.3
     132
    130133* 3.2.7
    131134    * IMPROVED - Compatibility with WordPress 4.2.3
     
    262265* 1.0
    263266    * Initial release
     267
     268== Upgrade Notice ==
     269
     270= 3.3 =
     271IMPORTANT: After upgrade, Deactivate and Activate the plugin to update the files of mobile theme.
  • total-security/trunk/total-security.php

    r1209364 r1226392  
    44 * Plugin URI: http://fabrix.net/total-security/
    55 * Description: Checks your WordPress installation and provides detailed reporting on discovered vulnerabilities, anything suspicious and how to fix them.
    6  * Version: 3.2.7
     6 * Version: 3.3
    77 * Author: Fabrix DoRoMo
    88 * Author URI: http://fabrix.net
     
    1414
    1515class Total_Security {
    16         public $min_wp_ver          = '4.2.3'; //
    17         public $pluginversion       = '3.2.7';
    18 
    19         public $php_lastver         = '5.6.8'; // PHP - http://php.net/downloads.php
    20         public $mySQL_lastver       = '5.6.24'; // MYSQL - http://dev.mysql.com/downloads/
     16        public $min_wp_ver          = '4.3'; //
     17        public $pluginversion       = '3.3';
     18
     19        public $php_lastver         = '5.6.12'; // PHP - http://php.net/downloads.php
     20        public $mySQL_lastver       = '5.6.26'; // MYSQL - http://dev.mysql.com/downloads/
    2121
    2222        public $pluginname          = 'Total Security';
Note: See TracChangeset for help on using the changeset viewer.