Plugin Directory

Changeset 181311


Ignore:
Timestamp:
12/09/2009 03:04:31 PM (16 years ago)
Author:
theDI
Message:

v 1.1.1

Location:
wp-external-links-bar/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-external-links-bar/trunk/wp-elb.class.php

    r181286 r181311  
    9696        $noapply = explode("\n",$this->config['no_apply']);
    9797        foreach($noapply as $link){
    98             if(strpos($url, $this->cleanUrl($link)) === 0){
    99                 $return = false;
     98            if($link){
     99                if(strpos($url, $this->cleanUrl($link)) === 0){
     100                    $return = false;
     101                }
    100102            }
    101103        }
  • wp-external-links-bar/trunk/wp-elb.php

    r181286 r181311  
    33 * @package wp-external-links-bar
    44 * @author Eduardo Chiaro
    5  * @version 1.1
     5 * @version 1.1.1
    66 */
    77/*
     
    1010Description: Maintain your external links (in posts and comments) in your site. Create a Link Bar like facebook, digg and google. With share link.
    1111Author:Eduardo Chiaro
    12 Version: 1.1
     12Version: 1.1.1
    1313Author URI: http://www.eduardochiaro.it
    1414*/
Note: See TracChangeset for help on using the changeset viewer.