Version Description
Download this release
Release Info
Developer | SEO Design Solutions |
Plugin | SEO Ultimate |
Version | 4.5.3 |
Comparing to | |
See all releases |
Code changes from version 4.5.2 to 4.5.3
- modules/autolinks/content-autolinks.php +5 -4
- readme.txt +6 -3
- seo-ultimate.php +4 -4
modules/autolinks/content-autolinks.php
CHANGED
@@ -126,16 +126,18 @@ class SU_ContentAutolinks extends SU_Module {
|
|
126 |
$num_links = count($links);
|
127 |
}
|
128 |
|
|
|
|
|
129 |
if ($num_links > 0) {
|
130 |
$this->admin_subheader(__('Edit Existing Links', 'seo-ultimate'));
|
131 |
-
$this->content_links_form(0, $links);
|
132 |
}
|
133 |
|
134 |
$this->admin_subheader(__('Add a New Link', 'seo-ultimate'));
|
135 |
-
$this->content_links_form($num_links, array(array()), false);
|
136 |
}
|
137 |
|
138 |
-
function content_links_form($start_id = 0, $links, $delete_option = true) {
|
139 |
|
140 |
//Set headers
|
141 |
$headers = array(
|
@@ -168,7 +170,6 @@ class SU_ContentAutolinks extends SU_Module {
|
|
168 |
}
|
169 |
|
170 |
//Cycle through links
|
171 |
-
$guid = substr(md5(time()), 0, 10);
|
172 |
$i = $start_id;
|
173 |
foreach ($links as $link) {
|
174 |
|
126 |
$num_links = count($links);
|
127 |
}
|
128 |
|
129 |
+
$guid = substr(md5(time()), 0, 10);
|
130 |
+
|
131 |
if ($num_links > 0) {
|
132 |
$this->admin_subheader(__('Edit Existing Links', 'seo-ultimate'));
|
133 |
+
$this->content_links_form($guid, 0, $links);
|
134 |
}
|
135 |
|
136 |
$this->admin_subheader(__('Add a New Link', 'seo-ultimate'));
|
137 |
+
$this->content_links_form($guid, $num_links, array(array()), false);
|
138 |
}
|
139 |
|
140 |
+
function content_links_form($guid, $start_id = 0, $links, $delete_option = true) {
|
141 |
|
142 |
//Set headers
|
143 |
$headers = array(
|
170 |
}
|
171 |
|
172 |
//Cycle through links
|
|
|
173 |
$i = $start_id;
|
174 |
foreach ($links as $link) {
|
175 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: SEO Design Solutions
|
|
3 |
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, title, meta, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.0
|
6 |
-
Stable tag: 4.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 |
|
@@ -215,11 +215,14 @@ Frequently asked questions, settings help, and troubleshooting tips for SEO Ulti
|
|
215 |
|
216 |
== Changelog ==
|
217 |
|
|
|
|
|
|
|
218 |
= Version 4.5.2 (August 18, 2010) =
|
219 |
-
* Bugfix:
|
220 |
|
221 |
= Version 4.5.1 (August 14, 2010) =
|
222 |
-
* Bugfix: Deeplink Juggernaut
|
223 |
|
224 |
= Version 4.5 (August 13, 2010) =
|
225 |
* Improvement: SEO Ultimate now only saves database data when its settings are updated
|
3 |
Tags: seo, SEO Ultimate, suite, google, yahoo, bing, search engines, admin, post, page, custom post types, categories, tags, terms, custom taxonomies, title, meta, robots, noindex, nofollow, canonical, 404, robots.txt, htaccess, slugs, url, anchor, more, link, excerpt, permalink, links, autolinks, code, footer, modules, uninstallable, reinstallable, downgradable, import, export, CSV
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.0
|
6 |
+
Stable tag: 4.5.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 |
|
215 |
|
216 |
== Changelog ==
|
217 |
|
218 |
+
= Version 4.5.3 (August 18, 2010) =
|
219 |
+
* Bugfix: A third fix for Deeplink Juggernaut URL-loss problem
|
220 |
+
|
221 |
= Version 4.5.2 (August 18, 2010) =
|
222 |
+
* Bugfix: A second fix for Deeplink Juggernaut URL-loss problem
|
223 |
|
224 |
= Version 4.5.1 (August 14, 2010) =
|
225 |
+
* Bugfix: Fix for Deeplink Juggernaut URL-loss problem (bug introduced in 3.9)
|
226 |
|
227 |
= Version 4.5 (August 13, 2010) =
|
228 |
* Improvement: SEO Ultimate now only saves database data when its settings are updated
|
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: 4.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 4.5.
|
16 |
* @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
|
17 |
*/
|
18 |
|
@@ -47,10 +47,10 @@ define('SU_MINIMUM_WP_VER', '2.8');
|
|
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', '4.5.
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
-
define('SU_USER_AGENT', 'SeoUltimate/4.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: 4.5.3
|
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 4.5.3
|
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', '4.5.3');
|
51 |
define('SU_AUTHOR', 'SEO Design Solutions');
|
52 |
define('SU_AUTHOR_URI', 'http://www.seodesignsolutions.com/');
|
53 |
+
define('SU_USER_AGENT', 'SeoUltimate/4.5.3');
|
54 |
|
55 |
/********** INCLUDES **********/
|
56 |
|