SEO Ultimate - Version 1.8.3

Version Description

Download this release

Release Info

Developer SEO Design Solutions
Plugin Icon 128x128 SEO Ultimate
Version 1.8.3
Comparing to
See all releases

Code changes from version 1.8.2 to 1.8.3

Files changed (3) hide show
  1. modules/settings/settings.php +2 -2
  2. readme.txt +4 -1
  3. seo-ultimate.php +4 -4
modules/settings/settings.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * SEO Ultimate Plugin Settings Module
4
  *
5
- * @version 2.3.1
6
  * @since 0.2
7
  */
8
 
@@ -82,7 +82,7 @@ class SU_Settings extends SU_Module {
82
 
83
 
84
  //Hook to add attribution link
85
- if ($this->get_setting('attribution_link', true)) {
86
  add_action('wp_meta', array(&$this, 'meta_link'));
87
  add_action('wp_footer', array(&$this, 'footer_link'));
88
  }
2
  /**
3
  * SEO Ultimate Plugin Settings Module
4
  *
5
+ * @version 2.3.2
6
  * @since 0.2
7
  */
8
 
82
 
83
 
84
  //Hook to add attribution link
85
+ if ($this->get_setting('attribution_link')) {
86
  add_action('wp_meta', array(&$this, 'meta_link'));
87
  add_action('wp_footer', array(&$this, 'footer_link'));
88
  }
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: SEO Design Solutions
3
  Tags: seo, google, yahoo, bing, search engines, admin, post, page, modules, title, meta, noindex, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks
4
  Requires at least: 2.8
5
  Tested up to: 2.9
6
- Stable tag: 1.8.2
7
 
8
  This all-in-one SEO plugin gives you control over titles, noindex, meta data, slugs, canonical tags, "more" links, 404 error tracking, and more.
9
 
@@ -581,6 +581,9 @@ Frequently asked questions, documentation, and troubleshooting tips for SEO Ulti
581
 
582
  == Changelog ==
583
 
 
 
 
584
  = Version 1.8.2 (March 29, 2010) =
585
  * Bugfix: Fixed Deeplink Juggernaut error
586
 
3
  Tags: seo, google, yahoo, bing, search engines, admin, post, page, modules, title, meta, noindex, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks
4
  Requires at least: 2.8
5
  Tested up to: 2.9
6
+ Stable tag: 1.8.3
7
 
8
  This all-in-one SEO plugin gives you control over titles, noindex, meta data, slugs, canonical tags, "more" links, 404 error tracking, and more.
9
 
581
 
582
  == Changelog ==
583
 
584
+ = Version 1.8.3 (March 30, 2010) =
585
+ * Bugfix: Fixed bug that caused disabled attribution link to display under certain circumstances
586
+
587
  = Version 1.8.2 (March 29, 2010) =
588
  * Bugfix: Fixed Deeplink Juggernaut error
589
 
seo-ultimate.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: SEO Ultimate
4
  Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
5
  Description: This all-in-one SEO plugin gives you control over titles, noindex, meta data, slugs, canonical tags, "more" links, 404 error tracking, and more.
6
- Version: 1.8.2
7
  Author: SEO Design Solutions
8
  Author URI: http://www.seodesignsolutions.com/
9
  Text Domain: seo-ultimate
@@ -12,7 +12,7 @@ Text Domain: seo-ultimate
12
  /**
13
  * The main SEO Ultimate plugin file.
14
  * @package SeoUltimate
15
- * @version 1.8.2
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
@@ -38,10 +38,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
38
  //Reading plugin info from constants is faster than trying to parse it from the header above.
39
  define("SU_PLUGIN_NAME", "SEO Ultimate");
40
  define("SU_PLUGIN_URI", "http://www.seodesignsolutions.com/wordpress-seo/");
41
- define("SU_VERSION", "1.8.2");
42
  define("SU_AUTHOR", "SEO Design Solutions");
43
  define("SU_AUTHOR_URI", "http://www.seodesignsolutions.com/");
44
- define("SU_USER_AGENT", "SeoUltimate/1.8.2");
45
 
46
  /********** INCLUDES **********/
47
 
3
  Plugin Name: SEO Ultimate
4
  Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
5
  Description: This all-in-one SEO plugin gives you control over titles, noindex, meta data, slugs, canonical tags, "more" links, 404 error tracking, and more.
6
+ Version: 1.8.3
7
  Author: SEO Design Solutions
8
  Author URI: http://www.seodesignsolutions.com/
9
  Text Domain: seo-ultimate
12
  /**
13
  * The main SEO Ultimate plugin file.
14
  * @package SeoUltimate
15
+ * @version 1.8.3
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
38
  //Reading plugin info from constants is faster than trying to parse it from the header above.
39
  define("SU_PLUGIN_NAME", "SEO Ultimate");
40
  define("SU_PLUGIN_URI", "http://www.seodesignsolutions.com/wordpress-seo/");
41
+ define("SU_VERSION", "1.8.3");
42
  define("SU_AUTHOR", "SEO Design Solutions");
43
  define("SU_AUTHOR_URI", "http://www.seodesignsolutions.com/");
44
+ define("SU_USER_AGENT", "SeoUltimate/1.8.3");
45
 
46
  /********** INCLUDES **********/
47