SEO Ultimate - Version 6.5.1

Version Description

Download this release

Release Info

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

Code changes from version 6.5 to 6.5.1

modules/autolinks/content-autolinks.php CHANGED
@@ -84,7 +84,7 @@ class SU_ContentAutolinks extends SU_Module {
84
  $type = $data['to_type'];
85
 
86
  if (sustr::startswith($type, 'posttype_')) {
87
- $to_id = (int)$to_id;
88
  $to_post = get_post($to_id);
89
 
90
  if (get_post_status($to_id) != 'publish') continue;
@@ -110,7 +110,9 @@ class SU_ContentAutolinks extends SU_Module {
110
  }
111
 
112
  $url = get_permalink($to_id);
113
- } else
 
 
114
  $url = $this->jlsuggest_value_to_url($to_id ? "obj_$type/$to_id" : "obj_$type");
115
 
116
  if (!$this->get_setting('enable_self_links', false) && ($url == suurl::current() || $url == get_permalink()))
84
  $type = $data['to_type'];
85
 
86
  if (sustr::startswith($type, 'posttype_')) {
87
+ $to_id = intval($to_id);
88
  $to_post = get_post($to_id);
89
 
90
  if (get_post_status($to_id) != 'publish') continue;
110
  }
111
 
112
  $url = get_permalink($to_id);
113
+ } elseif ($type == 'url')
114
+ $url = $to_id;
115
+ else
116
  $url = $this->jlsuggest_value_to_url($to_id ? "obj_$type/$to_id" : "obj_$type");
117
 
118
  if (!$this->get_setting('enable_self_links', false) && ($url == suurl::current() || $url == get_permalink()))
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, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
4
  Requires at least: 3.2
5
  Tested up to: 3.2
6
- Stable tag: 6.5
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
 
@@ -116,7 +116,7 @@ SEO Ultimate is an all-in-one [SEO](http://www.seodesignsolutions.com/) plugin w
116
  * **Webmaster Verification Assistant**
117
  * Enter verification codes in the provided fields to access search engine webmaster tools.
118
 
119
- * **Link Mask Generator** -- UPDATED in Version 6.1
120
  * Lets you generate robots.txt-blocked "link masks" (e.g. `www.example.com/go/google/`) that pass-through to an external URL.
121
  * Lets you mask links on a per-link, per-post basis so you can exert fine-tuned control over your posts' linkflow.
122
  * Lets you change `/go/` to a directory of your choosing.
@@ -247,6 +247,9 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
247
 
248
  == Changelog ==
249
 
 
 
 
250
  = Version 6.5 (July 9, 2011) =
251
  * Feature: Added "Footer Links" functionality to Deeplink Juggernaut
252
  * Feature: Deeplink Juggernaut's autocomplete textboxes now include author archives
3
  Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, base, title, meta, robots, noindex, nofollow, canonical, HTTP headers, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV, affiliate
4
  Requires at least: 3.2
5
  Tested up to: 3.2
6
+ Stable tag: 6.5.1
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
 
116
  * **Webmaster Verification Assistant**
117
  * Enter verification codes in the provided fields to access search engine webmaster tools.
118
 
119
+ * **Link Mask Generator**
120
  * Lets you generate robots.txt-blocked "link masks" (e.g. `www.example.com/go/google/`) that pass-through to an external URL.
121
  * Lets you mask links on a per-link, per-post basis so you can exert fine-tuned control over your posts' linkflow.
122
  * Lets you change `/go/` to a directory of your choosing.
247
 
248
  == Changelog ==
249
 
250
+ = Version 6.5.1 (July 11, 2011) =
251
+ * Bugfix: Restored Deeplink Juggernaut's ability to link to arbitrary URLs
252
+
253
  = Version 6.5 (July 9, 2011) =
254
  * Feature: Added "Footer Links" functionality to Deeplink Juggernaut
255
  * Feature: Deeplink Juggernaut's autocomplete textboxes now include author archives
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.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 6.5
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
@@ -47,10 +47,10 @@ define('SU_MINIMUM_WP_VER', '3.1');
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.5');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
- define('SU_USER_AGENT', 'SeoUltimate/6.5');
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.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 6.5.1
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.5.1');
51
  define('SU_AUTHOR', 'SEO Design Solutions');
52
  define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
53
+ define('SU_USER_AGENT', 'SeoUltimate/6.5.1');
54
 
55
  /********** INCLUDES **********/
56