Changeset 1525009 for email-encoder-bundle
- Timestamp:
- 10/31/2016 12:01:16 AM (9 years ago)
- Location:
- email-encoder-bundle/trunk
- Files:
-
- 3 edited
-
email-encoder-bundle.php (modified) (1 diff)
-
includes/class-eeb-site.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
email-encoder-bundle/trunk/email-encoder-bundle.php
r1436412 r1525009 5 5 Description: Protect email addresses on your site and hide them from spambots by using an encoding method. Easy to use, flexible . 6 6 Author: Victor Villaverde Laan 7 Version: 1.4. 57 Version: 1.4.6 8 8 Author URI: http://www.freelancephp.net 9 9 License: Dual licensed under the MIT and GPL licenses -
email-encoder-bundle/trunk/includes/class-eeb-site.php
r1436412 r1525009 175 175 global $post; 176 176 177 if (isset($post) && i n_array($post->ID, $this->skip_posts)) {177 if (isset($post) && is_a($post, 'WP_Post') && in_array($post->ID, $this->skip_posts)) { 178 178 return $content; 179 179 } … … 251 251 252 252 // workaround to skip responsive image names containing @ 253 $excludedList = array('.jpg', '.jpeg', ' png', 'gif');253 $excludedList = array('.jpg', '.jpeg', '.png', '.gif'); 254 254 if (in_array($extention, $excludedList)) { 255 255 return $match[0]; -
email-encoder-bundle/trunk/readme.txt
r1436412 r1525009 3 3 Tags: email address, protect, antispam, mailto, spambot, secure, e-mail, email, mail, obfuscate, encode, encoder, encrypt, hide, bot, crawl, spider, robots, spam, protection, harvest, harvesting, security 4 4 Requires at least: 3.6.0 5 Tested up to: 4. 5.26 Stable tag: 1.4. 55 Tested up to: 4.6.1 6 Stable tag: 1.4.6 7 7 8 8 Encode mailto links, email addresses, phone numbers and any text to hide them from (spam)bots. Mailto links will be protected automatically. … … 124 124 125 125 == Changelog == 126 127 = 1.4.6 = 128 * Fixed bug retina png and gif images 126 129 127 130 = 1.4.5 =
Note: See TracChangeset
for help on using the changeset viewer.