External Links - Version 5.5.1

Version Description

  • Additional tweak to global callback processing
Download this release

Release Info

Developer Mike_Koepke
Plugin Icon wp plugin External Links
Version 5.5.1
Comparing to
See all releases

Code changes from version 5.5.2 to 5.5.1

external-links-anchor-utils.php CHANGED
@@ -30,14 +30,14 @@ class external_links_anchor_utils {
30
  $this->external_links = $external_links;
31
 
32
  if ( $apply_globally ) {
33
- add_action('wp', array($this, 'ob_start'), 1000000);
34
  }
35
  else {
36
- add_filter('the_content', array($this, 'filter'), 1000000);
37
- add_filter('the_excerpt', array($this, 'filter'), 1000000);
38
- add_filter('comment_text', array($this, 'filter'), 1000000);
39
  if ( $inc_text_widgets )
40
- add_filter('widget_text', array($this, 'filter'), 1000000);
41
  }
42
 
43
  } #external_links_anchor_utils
@@ -53,7 +53,7 @@ class external_links_anchor_utils {
53
  echo '<!-- external-links ' . 'ob_start' . ' -->' . "\n";
54
 
55
  ob_start(array($this, 'ob_filter'));
56
- add_action('wp_footer', array($this, 'ob_flush'), 1000000);
57
  } # ob_start()
58
 
59
  /**
30
  $this->external_links = $external_links;
31
 
32
  if ( $apply_globally ) {
33
+ add_action('wp_head', array($this, 'ob_start'), 100000);
34
  }
35
  else {
36
+ add_filter('the_content', array($this, 'filter'), 100000);
37
+ add_filter('the_excerpt', array($this, 'filter'), 100000);
38
+ add_filter('comment_text', array($this, 'filter'), 100000);
39
  if ( $inc_text_widgets )
40
+ add_filter('widget_text', array($this, 'filter'), 100000);
41
  }
42
 
43
  } #external_links_anchor_utils
53
  echo '<!-- external-links ' . 'ob_start' . ' -->' . "\n";
54
 
55
  ob_start(array($this, 'ob_filter'));
56
+ add_action('wp_print_footer_scripts', array($this, 'ob_flush'), 100000);
57
  } # ob_start()
58
 
59
  /**
readme.txt CHANGED
@@ -36,10 +36,6 @@ If you require more dedicated assistance, consider using [Semiologic Pro](http:/
36
 
37
  == Change Log ==
38
 
39
- = 5.5.2 =
40
-
41
- - Fix compatibility with Yoast WP SEO plugin when Force Title Rewrite option is on and using the Apply Globally setting of this plugin.
42
-
43
  = 5.5.1 =
44
 
45
  - Additional tweak to global callback processing
36
 
37
  == Change Log ==
38
 
 
 
 
 
39
  = 5.5.1 =
40
 
41
  - Additional tweak to global callback processing
sem-external-links.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: External Links
4
  Plugin URI: http://www.semiologic.com/software/external-links/
5
  Description: Marks outbound links as such, with various effects that are configurable under <a href="options-general.php?page=external-links">Settings / External Links</a>.
6
- Version: 5.5.2
7
  Author: Denis de Bernardy & Mike Koepke
8
  Author URI: http://www.getsemiologic.com
9
  Text Domain: external-links
3
  Plugin Name: External Links
4
  Plugin URI: http://www.semiologic.com/software/external-links/
5
  Description: Marks outbound links as such, with various effects that are configurable under <a href="options-general.php?page=external-links">Settings / External Links</a>.
6
+ Version: 5.5.1
7
  Author: Denis de Bernardy & Mike Koepke
8
  Author URI: http://www.getsemiologic.com
9
  Text Domain: external-links