SEO Ultimate - Version 1.7.2

Version Description

Download this release

Release Info

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

Code changes from version 1.7.1 to 1.7.2

Files changed (3) hide show
  1. plugin/class.seo-ultimate.php +3 -0
  2. readme.txt +6 -1
  3. seo-ultimate.php +4 -4
plugin/class.seo-ultimate.php CHANGED
@@ -968,6 +968,9 @@ class SEO_Ultimate {
968
  */
969
  function admin_help($text, $screen) {
970
 
 
 
 
971
  //If we're on the post or page editor...
972
  if (strcmp($screen, 'post') == 0 || strcmp($screen, 'page') == 0) {
973
 
968
  */
969
  function admin_help($text, $screen) {
970
 
971
+ //The $screen parameter changed to an object in WordPress 3.0 alpha
972
+ if (is_object($screen)) $screen = $screen->id;
973
+
974
  //If we're on the post or page editor...
975
  if (strcmp($screen, 'post') == 0 || strcmp($screen, 'page') == 0) {
976
 
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
4
  Requires at least: 2.8
5
  Tested up to: 2.9
6
- Stable tag: 1.7.1
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
 
@@ -94,6 +94,8 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
94
 
95
  [**Download**](http://downloads.wordpress.org/plugin/seo-ultimate.zip) **your free copy of SEO Ultimate today.**
96
 
 
 
97
  == Installation ==
98
 
99
  To install the plugin automatically:
@@ -575,6 +577,9 @@ Frequently asked questions, documentation, and troubleshooting tips for SEO Ulti
575
 
576
  == Changelog ==
577
 
 
 
 
578
  = Version 1.7.1 (February 27, 2010) =
579
  * Bugfix: Fixed conflict with Flexibility theme
580
  * Bugfix: Comment administration no longer alters SEO Ultimate menu bubble counters
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
4
  Requires at least: 2.8
5
  Tested up to: 2.9
6
+ Stable tag: 1.7.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
 
94
 
95
  [**Download**](http://downloads.wordpress.org/plugin/seo-ultimate.zip) **your free copy of SEO Ultimate today.**
96
 
97
+ [youtube http://www.youtube.com/watch?v=IE_10_nwe0c]
98
+
99
  == Installation ==
100
 
101
  To install the plugin automatically:
577
 
578
  == Changelog ==
579
 
580
+ = Version 1.7.2 (March 6, 2010) =
581
+ * Bugfix: Fixed blank-admin-area bug in WordPress 3.0 alpha
582
+
583
  = Version 1.7.1 (February 27, 2010) =
584
  * Bugfix: Fixed conflict with Flexibility theme
585
  * Bugfix: Comment administration no longer alters SEO Ultimate menu bubble counters
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.7.1
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.7.1
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.7.1");
42
  define("SU_AUTHOR", "SEO Design Solutions");
43
  define("SU_AUTHOR_URI", "http://www.seodesignsolutions.com/");
44
- define("SU_USER_AGENT", "SeoUltimate/1.7.1");
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.7.2
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.7.2
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.7.2");
42
  define("SU_AUTHOR", "SEO Design Solutions");
43
  define("SU_AUTHOR_URI", "http://www.seodesignsolutions.com/");
44
+ define("SU_USER_AGENT", "SeoUltimate/1.7.2");
45
 
46
  /********** INCLUDES **********/
47