Plugin Directory


Ignore:
Timestamp:
10/31/2016 12:01:16 AM (9 years ago)
Author:
freelancephp
Message:

version 1.4.6

Location:
email-encoder-bundle/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • email-encoder-bundle/trunk/email-encoder-bundle.php

    r1436412 r1525009  
    55Description:    Protect email addresses on your site and hide them from spambots by using an encoding method. Easy to use, flexible .
    66Author:         Victor Villaverde Laan
    7 Version:        1.4.5
     7Version:        1.4.6
    88Author URI:     http://www.freelancephp.net
    99License:        Dual licensed under the MIT and GPL licenses
  • email-encoder-bundle/trunk/includes/class-eeb-site.php

    r1436412 r1525009  
    175175        global $post;
    176176
    177         if (isset($post) && in_array($post->ID, $this->skip_posts)) {
     177        if (isset($post) && is_a($post, 'WP_Post') && in_array($post->ID, $this->skip_posts)) {
    178178            return $content;
    179179        }
     
    251251
    252252        // workaround to skip responsive image names containing @
    253         $excludedList = array('.jpg', '.jpeg', 'png', 'gif');
     253        $excludedList = array('.jpg', '.jpeg', '.png', '.gif');
    254254        if (in_array($extention, $excludedList)) {
    255255            return $match[0];
  • email-encoder-bundle/trunk/readme.txt

    r1436412 r1525009  
    33Tags: 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
    44Requires at least: 3.6.0
    5 Tested up to: 4.5.2
    6 Stable tag: 1.4.5
     5Tested up to: 4.6.1
     6Stable tag: 1.4.6
    77
    88Encode mailto links, email addresses, phone numbers and any text to hide them from (spam)bots. Mailto links will be protected automatically.
     
    124124
    125125== Changelog ==
     126
     127= 1.4.6 =
     128* Fixed bug retina png and gif images
    126129
    127130= 1.4.5 =
Note: See TracChangeset for help on using the changeset viewer.