SEO Ultimate - Version 6.9.4

Version Description

Download this release

Release Info

Developer JohnLamansky
Plugin Icon 128x128 SEO Ultimate
Version 6.9.4
Comparing to
See all releases

Code changes from version 6.9.3 to 6.9.4

Files changed (3) hide show
  1. modules/slugs/slugs.php +3 -2
  2. readme.txt +12 -1
  3. seo-ultimate.php +4 -4
modules/slugs/slugs.php CHANGED
@@ -42,8 +42,9 @@ class SU_Slugs extends SU_Module {
42
  if (empty($slug)) $slug = $_POST['post_title'];
43
 
44
  //Prepare the title and the words for comparison
45
- $slug = mb_strtolower(stripslashes($slug));
46
- $words = mb_strtolower(stripslashes($this->get_setting('words_to_remove')));
 
47
 
48
  //Remove the stopwords from the slug
49
  $newslug = implode("-", array_diff(explode(" ", $slug), suarr::explode_lines($words)));
42
  if (empty($slug)) $slug = $_POST['post_title'];
43
 
44
  //Prepare the title and the words for comparison
45
+ $strtolower = function_exists('mb_strtolower') ? 'mb_strtolower' : 'strtolower';
46
+ $slug = $strtolower(stripslashes($slug));
47
+ $words = $strtolower(stripslashes($this->get_setting('words_to_remove')));
48
 
49
  //Remove the stopwords from the slug
50
  $newslug = implode("-", array_diff(explode(" ", $slug), suarr::explode_lines($words)));
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: SEO Design Solutions, JohnLamansky
3
  Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, title tag, wp_title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, settings, redirect, 301, 302, 307, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
4
  Requires at least: 3.2
5
  Tested up to: 3.2
6
- Stable tag: 6.9.3
7
 
8
  This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
9
 
@@ -183,6 +183,14 @@ To install the plugin manually:
183
 
184
  == Frequently Asked Questions ==
185
 
 
 
 
 
 
 
 
 
186
  = General FAQ =
187
 
188
  * **Why "SEO Ultimate" instead of "Ultimate SEO"?**
@@ -257,6 +265,9 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
257
 
258
  == Changelog ==
259
 
 
 
 
260
  = Version 6.9.3 (August 22, 2011) =
261
  * Bugfix: Fixed bug in Rich Snippet Creator that caused raw HTML to be outputted in posts (introduced in 6.9.2)
262
  * Bugfix: Added missing textdomains to some strings
3
  Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, title tag, wp_title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, settings, redirect, 301, 302, 307, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
4
  Requires at least: 3.2
5
  Tested up to: 3.2
6
+ Stable tag: 6.9.4
7
 
8
  This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.
9
 
183
 
184
  == Frequently Asked Questions ==
185
 
186
+ = Troubleshooting =
187
+
188
+ * **I installed SEO Ultimate and my site broke. What do I do?**
189
+ If you get an error message or your screen goes blank after you activate SEO Ultimate, it's likely because your site ran out of memory. A common site memory limit is 32 megabytes. SEO Ultimate uses only 5 megabytes of memory, but combined with WordPress and your other plugins, you may be running over the limit. Try increasing your memory limit to "64M" (64 megabytes) [in your wp-config.php file](http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP), or contact your web host for assistance. (Note: The amount of site memory has nothing to do with the amount of your computer's memory.)
190
+
191
+ * **I upgraded SEO Ultimate and something broke. What do I do?**
192
+ If a new version of SEO Ultimate introduces a bug, you can easily revert back to the previous version you were using. Just go to the `Settings > SEO Ultimate` page and click on the "Downgrade" tab. (Downgrading is available most of the time, but if the new version upgraded the plugin's settings infrastructure, SEO Ultimate won't let you downgrade, since doing so would cause you to lose your settings. There may be other cases in which downgrading isn't available or causes problems; it's an unsupported feature, but should work in most cases.)
193
+
194
  = General FAQ =
195
 
196
  * **Why "SEO Ultimate" instead of "Ultimate SEO"?**
265
 
266
  == Changelog ==
267
 
268
+ = Version 6.9.4 (August 31, 2011) =
269
+ * Bugfix: Fixed mb_strtolower errors that appeared on some PHP setups (introduced in 6.9.2)
270
+
271
  = Version 6.9.3 (August 22, 2011) =
272
  * Bugfix: Fixed bug in Rich Snippet Creator that caused raw HTML to be outputted in posts (introduced in 6.9.2)
273
  * Bugfix: Added missing textdomains to some strings
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, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
6
- Version: 6.9.3
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 6.9.3
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
@@ -47,10 +47,10 @@ define('SU_MINIMUM_WP_VER', '3.1.3');
47
  //Reading plugin info from constants is faster than trying to parse it from the header above.
48
  define('SU_PLUGIN_NAME', 'SEO Ultimate');
49
  define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
50
- define('SU_VERSION', '6.9.3');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
- define('SU_USER_AGENT', 'SeoUltimate/6.9.3');
54
 
55
  /********** INCLUDES **********/
56
 
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, rich snippets, slugs, canonical tags, autolinks, 404 errors, rich snippets, and more.
6
+ Version: 6.9.4
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 6.9.4
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
47
  //Reading plugin info from constants is faster than trying to parse it from the header above.
48
  define('SU_PLUGIN_NAME', 'SEO Ultimate');
49
  define('SU_PLUGIN_URI', 'http://www.seodesignsolutions.com/wordpress-seo/');
50
+ define('SU_VERSION', '6.9.4');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
+ define('SU_USER_AGENT', 'SeoUltimate/6.9.4');
54
 
55
  /********** INCLUDES **********/
56