Version Description
- Minor fix to point to the correct binary API URL on the Wordfence cloud servers.
Download this release
Release Info
Developer | mmaunder |
Plugin | Wordfence Security – Firewall & Malware Scan |
Version | 1.3 |
Comparing to | |
See all releases |
Code changes from version 1.2 to 1.3
- lib/wfAPI.php +1 -1
- readme.txt +8 -1
- wordfence.php +1 -1
lib/wfAPI.php
CHANGED
@@ -88,7 +88,7 @@ class wfAPI {
|
|
88 |
}
|
89 |
public function binCall($func, $postData){
|
90 |
$this->errorMsg = false;
|
91 |
-
$url = WORDFENCE_API_URL . '
|
92 |
$curl = curl_init($url);
|
93 |
curl_setopt ($curl, CURLOPT_TIMEOUT, 30);
|
94 |
//curl_setopt($curl, CURLOPT_VERBOSE, true);
|
88 |
}
|
89 |
public function binCall($func, $postData){
|
90 |
$this->errorMsg = false;
|
91 |
+
$url = WORDFENCE_API_URL . '/v' . WORDFENCE_VERSION . '/?' . $this->makeAPIQueryString() . '&action=' . $func;
|
92 |
$curl = curl_init($url);
|
93 |
curl_setopt ($curl, CURLOPT_TIMEOUT, 30);
|
94 |
//curl_setopt($curl, CURLOPT_VERBOSE, true);
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: mmaunder
|
|
3 |
Tags: anti-virus, malware, firewall, antivirus, virus, google safe browsing, phishing, scrapers, hacking, wordfence
|
4 |
Requires at least: 3.3.1
|
5 |
Tested up to: 3.3.1
|
6 |
-
Stable tag: 1.
|
7 |
|
8 |
Wordfence is an enterprise firewall and anti-virus plugin for WordPress.
|
9 |
|
@@ -89,6 +89,13 @@ Yes! Simply visit the Options page, click on advanced options and enable or disa
|
|
89 |
5. If you're technically minded, this is the under-the-hood view of Wordfence options where you can fine-tune your security settings.
|
90 |
|
91 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
92 |
|
93 |
= 1.1 =
|
94 |
* Initial public release of Wordfence.
|
3 |
Tags: anti-virus, malware, firewall, antivirus, virus, google safe browsing, phishing, scrapers, hacking, wordfence
|
4 |
Requires at least: 3.3.1
|
5 |
Tested up to: 3.3.1
|
6 |
+
Stable tag: 1.3
|
7 |
|
8 |
Wordfence is an enterprise firewall and anti-virus plugin for WordPress.
|
9 |
|
89 |
5. If you're technically minded, this is the under-the-hood view of Wordfence options where you can fine-tune your security settings.
|
90 |
|
91 |
== Changelog ==
|
92 |
+
= 1.3 =
|
93 |
+
* Minor fix to point to the correct binary API URL on the Wordfence cloud servers.
|
94 |
+
|
95 |
+
= 1.2 =
|
96 |
+
* It is now free to get a Wordfence API key.
|
97 |
+
* Premium keys include theme and plugin file verification which consumes resources on the Wordfence servers.
|
98 |
+
* Various bugfixes and performance enhancements.
|
99 |
|
100 |
= 1.1 =
|
101 |
* Initial public release of Wordfence.
|
wordfence.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Wordfence
|
|
4 |
Plugin URI: http://wordfence.com/
|
5 |
Description: Anti-virus and Firewall for WordPress
|
6 |
Author: Mark Maunder
|
7 |
-
Version: 1.
|
8 |
Author URI: http://wordfence.com/
|
9 |
*/
|
10 |
require_once('lib/wordfenceConstants.php');
|
4 |
Plugin URI: http://wordfence.com/
|
5 |
Description: Anti-virus and Firewall for WordPress
|
6 |
Author: Mark Maunder
|
7 |
+
Version: 1.3
|
8 |
Author URI: http://wordfence.com/
|
9 |
*/
|
10 |
require_once('lib/wordfenceConstants.php');
|