Email Address Encoder - Version 1.0.16

Version Description

  • Avoid fatal error when using PHP 5.5 or lesser
Download this release

Release Info

Developer tillkruess
Plugin Icon 128x128 Email Address Encoder
Version 1.0.16
Comparing to
See all releases

Code changes from version 1.0.15 to 1.0.16

Files changed (3) hide show
  1. email-address-encoder.php +1 -1
  2. includes/admin.php +2 -2
  3. readme.txt +5 -1
email-address-encoder.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Email Address Encoder
4
  Plugin URI: https://encoder.till.im/
5
  Description: A lightweight plugin that protects email addresses from email-harvesting robots by encoding them into decimal and hexadecimal entities.
6
- Version: 1.0.15
7
  Author: Till Krüss
8
  Author URI: https://till.im/
9
  Text Domain: email-address-encoder
3
  Plugin Name: Email Address Encoder
4
  Plugin URI: https://encoder.till.im/
5
  Description: A lightweight plugin that protects email addresses from email-harvesting robots by encoding them into decimal and hexadecimal entities.
6
+ Version: 1.0.16
7
  Author: Till Krüss
8
  Author URI: https://till.im/
9
  Text Domain: email-address-encoder
includes/admin.php CHANGED
@@ -375,12 +375,12 @@ function eae_clear_caches() {
375
  }
376
 
377
  // JCH Optimize
378
- if ( class_exists( 'JchPlatformCache' ) && method_exists( JchPlatformCache::class, 'deleteCache' ) ) {
379
  JchPlatformCache::deleteCache( true );
380
  }
381
 
382
  // LiteSpeed Cache
383
- if ( class_exists( 'LiteSpeed_Cache_API' ) && method_exists( LiteSpeed_Cache_API::class, 'purge_all' ) ) {
384
  LiteSpeed_Cache_API::purge_all();
385
  }
386
  }
375
  }
376
 
377
  // JCH Optimize
378
+ if ( class_exists( 'JchPlatformCache' ) && method_exists( 'JchPlatformCache', 'deleteCache' ) ) {
379
  JchPlatformCache::deleteCache( true );
380
  }
381
 
382
  // LiteSpeed Cache
383
+ if ( class_exists( 'LiteSpeed_Cache_API' ) && method_exists( 'LiteSpeed_Cache_API', 'purge_all' ) ) {
384
  LiteSpeed_Cache_API::purge_all();
385
  }
386
  }
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: antispam, anti spam, spam, email, e-mail, mail, spider, crawler, harvester
5
  Requires at least: 2.0
6
  Tested up to: 5.1
7
  Requires PHP: 5.3
8
- Stable tag: 1.0.15
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
@@ -67,6 +67,10 @@ You can use the "Page Scanner" found under _Settings -> Email Encoder_ to see wh
67
 
68
  == Changelog ==
69
 
 
 
 
 
70
  = 1.0.15 =
71
 
72
  * Added `EAE_REGEXP` constant
5
  Requires at least: 2.0
6
  Tested up to: 5.1
7
  Requires PHP: 5.3
8
+ Stable tag: 1.0.16
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
11
 
67
 
68
  == Changelog ==
69
 
70
+ = 1.0.16 =
71
+
72
+ * Avoid fatal error when using PHP 5.5 or lesser
73
+
74
  = 1.0.15 =
75
 
76
  * Added `EAE_REGEXP` constant