Version Description
- Upgrading for WP 3.3.
Download this release
Release Info
Developer | dd@sucuri.net |
Plugin | Sucuri Security – Auditing, Malware Scanner and Security Hardening |
Version | 1.1.6 |
Comparing to | |
See all releases |
Code changes from version 1.1.5 to 1.1.6
- readme.txt +5 -2
- sucuri.php +3 -3
- sucuriscan_hardening.php +1 -1
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: dd@sucuri.net, dremeda
|
|
3 |
Donate Link: http://sitecheck.sucuri.net
|
4 |
Tags: malware,security,scan,spam,virus
|
5 |
Requires at least:3.0
|
6 |
-
Stable tag:1.1.
|
7 |
-
Tested up to: 3.
|
8 |
|
9 |
Get free Sucuri SiteCheck scan results directly in your WordPress dashboard. The best way to know if your site is infected with malware or blacklist by Google, all with the click of a button.
|
10 |
|
@@ -24,6 +24,9 @@ You can also scan your site at <a href="http://sitecheck.sucuri.net">http://site
|
|
24 |
|
25 |
== Changelog ==
|
26 |
|
|
|
|
|
|
|
27 |
= 1.1.5 =
|
28 |
* Removing PHP warnings / code cleaning.
|
29 |
|
3 |
Donate Link: http://sitecheck.sucuri.net
|
4 |
Tags: malware,security,scan,spam,virus
|
5 |
Requires at least:3.0
|
6 |
+
Stable tag:1.1.6
|
7 |
+
Tested up to: 3.3
|
8 |
|
9 |
Get free Sucuri SiteCheck scan results directly in your WordPress dashboard. The best way to know if your site is infected with malware or blacklist by Google, all with the click of a button.
|
10 |
|
24 |
|
25 |
== Changelog ==
|
26 |
|
27 |
+
= 1.1.6 =
|
28 |
+
* Upgrading for WP 3.3.
|
29 |
+
|
30 |
= 1.1.5 =
|
31 |
* Removing PHP warnings / code cleaning.
|
32 |
|
sucuri.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Sucuri Scanner
|
|
4 |
Plugin URI: http://sitecheck.sucuri.net/
|
5 |
Description: This plugin allows you to scan your website using the Sucuri SiteCheck Malware Scanner on your WordPress site. It will check for malware, spam, blacklisting and other security issues (htaccess redirections, hidden code, etc). Yes, it is free. Similar to the scans provided online at http://sitecheck.sucuri.net
|
6 |
Author: http://sucuri.net
|
7 |
-
Version: 1.1.
|
8 |
Author URI: http://sucuri.net
|
9 |
*/
|
10 |
|
@@ -16,7 +16,7 @@ if(!function_exists('add_action'))
|
|
16 |
}
|
17 |
|
18 |
define('SUCURISCAN','sucuriscan');
|
19 |
-
define('SUCURISCAN_VERSION','1.1.
|
20 |
define( 'SUCURI_URL',plugin_dir_url( __FILE__ ));
|
21 |
define( 'SUCURI_IMG',SUCURI_URL.'images/');
|
22 |
|
@@ -195,7 +195,7 @@ function sucuriscan_print_scan()
|
|
195 |
|
196 |
echo "<hr />\n";
|
197 |
global $wp_version;
|
198 |
-
if(strcmp($wp_version, "3.
|
199 |
{
|
200 |
echo '<h3><img style="position:relative;top:5px" height="22" width="22" src="
|
201 |
'.site_url().'/wp-content/plugins/sucuri-scanner/images/ok.png" />
|
4 |
Plugin URI: http://sitecheck.sucuri.net/
|
5 |
Description: This plugin allows you to scan your website using the Sucuri SiteCheck Malware Scanner on your WordPress site. It will check for malware, spam, blacklisting and other security issues (htaccess redirections, hidden code, etc). Yes, it is free. Similar to the scans provided online at http://sitecheck.sucuri.net
|
6 |
Author: http://sucuri.net
|
7 |
+
Version: 1.1.6
|
8 |
Author URI: http://sucuri.net
|
9 |
*/
|
10 |
|
16 |
}
|
17 |
|
18 |
define('SUCURISCAN','sucuriscan');
|
19 |
+
define('SUCURISCAN_VERSION','1.1.6');
|
20 |
define( 'SUCURI_URL',plugin_dir_url( __FILE__ ));
|
21 |
define( 'SUCURI_IMG',SUCURI_URL.'images/');
|
22 |
|
195 |
|
196 |
echo "<hr />\n";
|
197 |
global $wp_version;
|
198 |
+
if(strcmp($wp_version, "3.3") >= 0)
|
199 |
{
|
200 |
echo '<h3><img style="position:relative;top:5px" height="22" width="22" src="
|
201 |
'.site_url().'/wp-content/plugins/sucuri-scanner/images/ok.png" />
|
sucuriscan_hardening.php
CHANGED
@@ -95,7 +95,7 @@ function sucuriscan_harden_version()
|
|
95 |
{
|
96 |
$cp = 1;
|
97 |
}
|
98 |
-
if(strcmp($wp_version, "3.
|
99 |
{
|
100 |
$cp = 0;
|
101 |
}
|
95 |
{
|
96 |
$cp = 1;
|
97 |
}
|
98 |
+
if(strcmp($wp_version, "3.3") < 0)
|
99 |
{
|
100 |
$cp = 0;
|
101 |
}
|