SEO Ultimate - Version 2.5.1

Version Description

Download this release

Release Info

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

Code changes from version 2.5 to 2.5.1

Files changed (3) hide show
  1. modules/class.su-module.php +6 -1
  2. readme.txt +5 -2
  3. seo-ultimate.php +4 -4
modules/class.su-module.php CHANGED
@@ -733,7 +733,12 @@ class SU_Module {
733
  */
734
  function delete_setting($key, $module=null) {
735
  if (!$module) $module = $this->get_settings_key();
736
- unset($this->plugin->dbdata['settings'][$module][$key]);
 
 
 
 
 
737
  }
738
 
739
  /**
733
  */
734
  function delete_setting($key, $module=null) {
735
  if (!$module) $module = $this->get_settings_key();
736
+
737
+ if (isset($this->plugin->dbdata['settings']
738
+ , $this->plugin->dbdata['settings'][$module]
739
+ , $this->plugin->dbdata['settings'][$module][$key]))
740
+ //Some PHP setups will actually throw an error if we try to unset an array element that doesn't exist...
741
+ unset($this->plugin->dbdata['settings'][$module][$key]);
742
  }
743
 
744
  /**
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, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, categories, uninstallable, downgradable
4
  Requires at least: 2.8
5
  Tested up to: 3.0
6
- Stable tag: 2.5
7
 
8
  This all-in-one SEO plugin gives you control over titles, noindex/nofollow, meta tags, slugs, canonical tags, "more" links, 404 errors, and more.
9
 
@@ -591,9 +591,12 @@ Frequently asked questions, documentation, and troubleshooting tips for SEO Ulti
591
 
592
  == Changelog ==
593
 
 
 
 
594
  = Version 2.5 (June 1, 2010) =
595
  * Feature: Users can now upgrade/downgrade SEO Ultimate to versions of their choosing starting with 2.5
596
- * Bugfix: Fixed "string offset" fatal error
597
 
598
  = Version 2.4 (May 28, 2010) =
599
  * Feature: Added nofollow option for Deeplink Juggernaut links
3
  Tags: seo, google, yahoo, bing, search engines, admin, post, page, modules, title, meta, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, categories, uninstallable, downgradable
4
  Requires at least: 2.8
5
  Tested up to: 3.0
6
+ Stable tag: 2.5.1
7
 
8
  This all-in-one SEO plugin gives you control over titles, noindex/nofollow, meta tags, slugs, canonical tags, "more" links, 404 errors, and more.
9
 
591
 
592
  == Changelog ==
593
 
594
+ = Version 2.5.1 (June 1, 2010) =
595
+ * Bugfix: Fixed "string offset" fatal error that appears on certain setups
596
+
597
  = Version 2.5 (June 1, 2010) =
598
  * Feature: Users can now upgrade/downgrade SEO Ultimate to versions of their choosing starting with 2.5
599
+ * Bugfix: Fixed "string offset" fatal error that appears on certain setups
600
 
601
  = Version 2.4 (May 28, 2010) =
602
  * Feature: Added nofollow option for Deeplink Juggernaut links
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 title tags, noindex/nofollow, meta tags, slugs, canonical tags, "more" links, 404 errors, and more.
6
- Version: 2.5
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 2.5
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", "2.5");
42
  define("SU_AUTHOR", "SEO Design Solutions");
43
  define("SU_AUTHOR_URI", "http://www.seodesignsolutions.com/");
44
- define("SU_USER_AGENT", "SeoUltimate/2.5");
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 title tags, noindex/nofollow, meta tags, slugs, canonical tags, "more" links, 404 errors, and more.
6
+ Version: 2.5.1
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 2.5.1
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", "2.5.1");
42
  define("SU_AUTHOR", "SEO Design Solutions");
43
  define("SU_AUTHOR_URI", "http://www.seodesignsolutions.com/");
44
+ define("SU_USER_AGENT", "SeoUltimate/2.5.1");
45
 
46
  /********** INCLUDES **********/
47