Changeset 181311
- Timestamp:
- 12/09/2009 03:04:31 PM (16 years ago)
- Location:
- wp-external-links-bar/trunk
- Files:
-
- 2 edited
-
wp-elb.class.php (modified) (1 diff)
-
wp-elb.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-external-links-bar/trunk/wp-elb.class.php
r181286 r181311 96 96 $noapply = explode("\n",$this->config['no_apply']); 97 97 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 } 100 102 } 101 103 } -
wp-external-links-bar/trunk/wp-elb.php
r181286 r181311 3 3 * @package wp-external-links-bar 4 4 * @author Eduardo Chiaro 5 * @version 1.1 5 * @version 1.1.1 6 6 */ 7 7 /* … … 10 10 Description: Maintain your external links (in posts and comments) in your site. Create a Link Bar like facebook, digg and google. With share link. 11 11 Author:Eduardo Chiaro 12 Version: 1.1 12 Version: 1.1.1 13 13 Author URI: http://www.eduardochiaro.it 14 14 */
Note: See TracChangeset
for help on using the changeset viewer.