Version Description
- Fixed tiny bug (incorrect var-name $priority on line 100 of email-encoder-bundle.php)
Download this release
Release Info
Developer | freelancephp |
Plugin | Email Encoder Bundle – Protect Email Address |
Version | 0.31 |
Comparing to | |
See all releases |
Code changes from version 0.30 to 0.31
- email-encoder-bundle.php +3 -3
- readme.txt +4 -1
email-encoder-bundle.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Email Encoder Bundle
|
|
4 |
Plugin URI: http://www.freelancephp.net/email-encoder-php-class-wp-plugin/
|
5 |
Description: Protect email addresses on your site from spambots and being used for spamming by using one of the encoding methods.
|
6 |
Author: Victor Villaverde Laan
|
7 |
-
Version: 0.
|
8 |
Author URI: http://www.freelancephp.net
|
9 |
License: Dual licensed under the MIT and GPL licenses
|
10 |
*/
|
@@ -22,7 +22,7 @@ class WP_Email_Encoder_Bundle extends Lim_Email_Encoder {
|
|
22 |
* Current version
|
23 |
* @var string
|
24 |
*/
|
25 |
-
var $version = '0.
|
26 |
|
27 |
/**
|
28 |
* Used as prefix for options entry and could be used as text domain (for translations)
|
@@ -97,7 +97,7 @@ class WP_Email_Encoder_Bundle extends Lim_Email_Encoder {
|
|
97 |
$priority = 100;
|
98 |
|
99 |
// set content filters
|
100 |
-
add_filter( 'pre_get_posts', array( $this, 'pre_get_posts' ), $
|
101 |
|
102 |
// comments
|
103 |
if ( $this->options[ 'filter_comments' ] ) {
|
4 |
Plugin URI: http://www.freelancephp.net/email-encoder-php-class-wp-plugin/
|
5 |
Description: Protect email addresses on your site from spambots and being used for spamming by using one of the encoding methods.
|
6 |
Author: Victor Villaverde Laan
|
7 |
+
Version: 0.31
|
8 |
Author URI: http://www.freelancephp.net
|
9 |
License: Dual licensed under the MIT and GPL licenses
|
10 |
*/
|
22 |
* Current version
|
23 |
* @var string
|
24 |
*/
|
25 |
+
var $version = '0.31';
|
26 |
|
27 |
/**
|
28 |
* Used as prefix for options entry and could be used as text domain (for translations)
|
97 |
$priority = 100;
|
98 |
|
99 |
// set content filters
|
100 |
+
add_filter( 'pre_get_posts', array( $this, 'pre_get_posts' ), $priority );
|
101 |
|
102 |
// comments
|
103 |
if ( $this->options[ 'filter_comments' ] ) {
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: freelancephp
|
|
3 |
Tags: email, hide, mailto, spam, protection, spambots, encoder, encrypt, encode, obfuscate, antispam, spamming
|
4 |
Requires at least: 2.7.0
|
5 |
Tested up to: 3.1
|
6 |
-
Stable tag: 0.
|
7 |
|
8 |
Protect email addresses on your site from spambots and being used for spamming. This plugin encodes all email adresses so spambots cannot read them.
|
9 |
|
@@ -70,6 +70,9 @@ Optionally you can add a name and description to be showed in the admin panel, l
|
|
70 |
|
71 |
== Changelog ==
|
72 |
|
|
|
|
|
|
|
73 |
= 0.30 =
|
74 |
* Added protection for emails in RSS feeds
|
75 |
* Improved filtering tags [encode_email ... ]
|
3 |
Tags: email, hide, mailto, spam, protection, spambots, encoder, encrypt, encode, obfuscate, antispam, spamming
|
4 |
Requires at least: 2.7.0
|
5 |
Tested up to: 3.1
|
6 |
+
Stable tag: 0.31
|
7 |
|
8 |
Protect email addresses on your site from spambots and being used for spamming. This plugin encodes all email adresses so spambots cannot read them.
|
9 |
|
70 |
|
71 |
== Changelog ==
|
72 |
|
73 |
+
= 0.31 =
|
74 |
+
* Fixed tiny bug (incorrect var-name $priority on line 100 of email-encoder-bundle.php)
|
75 |
+
|
76 |
= 0.30 =
|
77 |
* Added protection for emails in RSS feeds
|
78 |
* Improved filtering tags [encode_email ... ]
|