Version Description
Download this release
Release Info
Developer | hallsofmontezuma |
Plugin | Acunetix WP Security |
Version | 2.7.1.1 |
Comparing to | |
See all releases |
Code changes from version 2.7.1 to 2.7.1.1
- readme.txt +1 -1
- securityscan.php +6 -4
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=mrtorb
|
|
4 |
Tags: security, securityscan, chmod, permissions, admin, administration, authentication, database, dashboard, post, notification, password, plugin, posts
|
5 |
plugins, private, protection, tracking, wordpress
|
6 |
Requires at least: 2.3
|
7 |
-
Tested up to: 2.8
|
8 |
Stable tag: trunk
|
9 |
|
10 |
Scans your WordPress installation for security vulnerabilities.
|
4 |
Tags: security, securityscan, chmod, permissions, admin, administration, authentication, database, dashboard, post, notification, password, plugin, posts
|
5 |
plugins, private, protection, tracking, wordpress
|
6 |
Requires at least: 2.3
|
7 |
+
Tested up to: 2.8.4
|
8 |
Stable tag: trunk
|
9 |
|
10 |
Scans your WordPress installation for security vulnerabilities.
|
securityscan.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP Security Scan
|
|
4 |
Plugin URI: http://semperfiwebdesign.com/plugins/wp-security-scan/
|
5 |
Description: Perform security scan of WordPress installation.
|
6 |
Author: Michael Torbert
|
7 |
-
Version: 2.7.1
|
8 |
Author URI: http://semperfiwebdesign.com/
|
9 |
*/
|
10 |
|
@@ -133,8 +133,9 @@ if($mrt_latest > $mrt_version)
|
|
133 |
|
134 |
|
135 |
$feed->set_feed_url('feed://donations.semperfiwebdesign.com/category/highest-donations/feed/');
|
136 |
-
|
137 |
-
|
|
|
138 |
$feed->init();
|
139 |
$feed->handle_content_type();
|
140 |
?>
|
@@ -159,8 +160,9 @@ if($mrt_latest > $mrt_version)
|
|
159 |
|
160 |
|
161 |
$feed->set_feed_url('feed://donations.semperfiwebdesign.com/category/wp-security-scan/feed/');
|
|
|
162 |
$feed->strip_htmltags(array('p'));
|
163 |
-
$feed->set_cache_location(WP_PLUGIN_DIR . '/wp-security-scan/');
|
164 |
$feed->init();
|
165 |
|
166 |
$feed->handle_content_type();
|
4 |
Plugin URI: http://semperfiwebdesign.com/plugins/wp-security-scan/
|
5 |
Description: Perform security scan of WordPress installation.
|
6 |
Author: Michael Torbert
|
7 |
+
Version: 2.7.1.1
|
8 |
Author URI: http://semperfiwebdesign.com/
|
9 |
*/
|
10 |
|
133 |
|
134 |
|
135 |
$feed->set_feed_url('feed://donations.semperfiwebdesign.com/category/highest-donations/feed/');
|
136 |
+
$feed->enable_cache(false);
|
137 |
+
$feed->strip_htmltags(array('p'));
|
138 |
+
// $feed->set_cache_location(WP_PLUGIN_DIR . '/wp-security-scan/');
|
139 |
$feed->init();
|
140 |
$feed->handle_content_type();
|
141 |
?>
|
160 |
|
161 |
|
162 |
$feed->set_feed_url('feed://donations.semperfiwebdesign.com/category/wp-security-scan/feed/');
|
163 |
+
$feed->enable_cache(false);
|
164 |
$feed->strip_htmltags(array('p'));
|
165 |
+
// $feed->set_cache_location(WP_PLUGIN_DIR . '/wp-security-scan/');
|
166 |
$feed->init();
|
167 |
|
168 |
$feed->handle_content_type();
|