SEO Ultimate - Version 1.5.1

Version Description

Download this release

Release Info

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

Code changes from version 1.5 to 1.5.1

includes/markdown/markdown.php CHANGED
@@ -31,8 +31,8 @@ define( 'MARKDOWN_VERSION', "1.0.1n" ); # Sat 10 Oct 2009
31
  #
32
 
33
  # Change to false to remove Markdown from posts and/or comments.
34
- @define( 'MARKDOWN_WP_POSTS', true );
35
- @define( 'MARKDOWN_WP_COMMENTS', true );
36
 
37
 
38
 
31
  #
32
 
33
  # Change to false to remove Markdown from posts and/or comments.
34
+ @define( 'MARKDOWN_WP_POSTS', false );
35
+ @define( 'MARKDOWN_WP_COMMENTS', false );
36
 
37
 
38
 
plugin/class.seo-ultimate.php CHANGED
@@ -1047,7 +1047,7 @@ class SEO_Ultimate {
1047
  */
1048
  function plugin_update_info($plugin_data, $r) {
1049
  if ($r && $r->new_version && !is_plugin_active('changelogger/changelogger.php')) {
1050
- $info = suwp::load_webpage("http://www.seodesignsolutions.com/apis/su/update-info/?ov=".urlencode(SU_VERSION)."&nv=".urlencode($r->new_version));
1051
  if ($info) {
1052
  $info = strip_tags($info, "<br><a><b><i><span>");
1053
  $info = str_replace('backup your database', '<a href="'.suwp::get_backup_url().'">backup your database</a>', $info);
1047
  */
1048
  function plugin_update_info($plugin_data, $r) {
1049
  if ($r && $r->new_version && !is_plugin_active('changelogger/changelogger.php')) {
1050
+ $info = suwp::load_webpage("http://www.seodesignsolutions.com/apis/su/update-info/?ov=".urlencode(SU_VERSION)."&nv=".urlencode($r->new_version), SU_USER_AGENT);
1051
  if ($info) {
1052
  $info = strip_tags($info, "<br><a><b><i><span>");
1053
  $info = str_replace('backup your database', '<a href="'.suwp::get_backup_url().'">backup your database</a>', $info);
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.5
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
 
@@ -573,6 +573,10 @@ Frequently asked questions, documentation, and troubleshooting tips for SEO Ulti
573
 
574
  == Changelog ==
575
 
 
 
 
 
576
  = Version 1.5 (January 23, 2010) =
577
  * Major under-the-hood changes and improvements
578
  * Feature: Added new {url_words} title format variable to Title Rewriter
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.5.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
 
573
 
574
  == Changelog ==
575
 
576
+ = Version 1.5.1 (January 23, 2010) =
577
+ * Bugfix: Stopped the included Markdown library from "helpfully" functioning as a WordPress plugin
578
+ * Bugfix: Fixed error that appeared above changelog notices
579
+
580
  = Version 1.5 (January 23, 2010) =
581
  * Major under-the-hood changes and improvements
582
  * Feature: Added new {url_words} title format variable to Title Rewriter
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.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 1.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", "1.5");
42
  define("SU_AUTHOR", "SEO Design Solutions");
43
  define("SU_AUTHOR_URI", "http://www.seodesignsolutions.com/");
44
- define("SU_USER_AGENT", "SeoUltimate/1.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 titles, noindex, meta data, slugs, canonical tags, "more" links, 404 error tracking, and more.
6
+ Version: 1.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 1.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", "1.5.1");
42
  define("SU_AUTHOR", "SEO Design Solutions");
43
  define("SU_AUTHOR_URI", "http://www.seodesignsolutions.com/");
44
+ define("SU_USER_AGENT", "SeoUltimate/1.5.1");
45
 
46
  /********** INCLUDES **********/
47