Version Description
Download this release
Release Info
Developer | SEO Design Solutions |
Plugin | SEO Ultimate |
Version | 1.8.2 |
Comparing to | |
See all releases |
Code changes from version 1.8.1 to 1.8.2
- includes/jlfunctions/arr.php +5 -0
- includes/jlfunctions/str.php +6 -0
- readme.txt +4 -1
- seo-ultimate.php +4 -4
includes/jlfunctions/arr.php
CHANGED
@@ -54,6 +54,11 @@ class suarr {
|
|
54 |
}
|
55 |
return false;
|
56 |
}
|
|
|
|
|
|
|
|
|
|
|
57 |
}
|
58 |
|
59 |
?>
|
54 |
}
|
55 |
return false;
|
56 |
}
|
57 |
+
|
58 |
+
function vklrsort(&$arr, $valuekey) {
|
59 |
+
$valuekey = sustr::preg_filter('A-Za-z0-9', $valuekey);
|
60 |
+
uksort($arr, create_function('$a,$b', 'return strlen($b["'.$valuekey.'"]) - strlen($a["'.$valuekey.'"]);'));
|
61 |
+
}
|
62 |
}
|
63 |
|
64 |
?>
|
includes/jlfunctions/str.php
CHANGED
@@ -119,6 +119,12 @@ class sustr {
|
|
119 |
return preg_replace("/[^{$filter}]/", '', $str);
|
120 |
}
|
121 |
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
}
|
123 |
|
124 |
?>
|
119 |
return preg_replace("/[^{$filter}]/", '', $str);
|
120 |
}
|
121 |
|
122 |
+
function preg_escape($str, $delim='%') {
|
123 |
+
$chars = "\^.$|()[]*+?{},".$delim;
|
124 |
+
foreach (str_split($chars) as $char)
|
125 |
+
$str = str_replace($char, '\\'.$char, $str);
|
126 |
+
return $str;
|
127 |
+
}
|
128 |
}
|
129 |
|
130 |
?>
|
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, links, autolinks
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 2.9
|
6 |
-
Stable tag: 1.8.
|
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 |
|
@@ -581,6 +581,9 @@ Frequently asked questions, documentation, and troubleshooting tips for SEO Ulti
|
|
581 |
|
582 |
== Changelog ==
|
583 |
|
|
|
|
|
|
|
584 |
= Version 1.8.1 (March 28, 2010) =
|
585 |
* Bugfix: Fixed Deeplink Juggernaut error
|
586 |
|
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, links, autolinks
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 2.9
|
6 |
+
Stable tag: 1.8.2
|
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 |
|
581 |
|
582 |
== Changelog ==
|
583 |
|
584 |
+
= Version 1.8.2 (March 29, 2010) =
|
585 |
+
* Bugfix: Fixed Deeplink Juggernaut error
|
586 |
+
|
587 |
= Version 1.8.1 (March 28, 2010) =
|
588 |
* Bugfix: Fixed Deeplink Juggernaut error
|
589 |
|
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.8.
|
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.8.
|
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.8.
|
42 |
define("SU_AUTHOR", "SEO Design Solutions");
|
43 |
define("SU_AUTHOR_URI", "http://www.seodesignsolutions.com/");
|
44 |
-
define("SU_USER_AGENT", "SeoUltimate/1.8.
|
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.8.2
|
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.8.2
|
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.8.2");
|
42 |
define("SU_AUTHOR", "SEO Design Solutions");
|
43 |
define("SU_AUTHOR_URI", "http://www.seodesignsolutions.com/");
|
44 |
+
define("SU_USER_AGENT", "SeoUltimate/1.8.2");
|
45 |
|
46 |
/********** INCLUDES **********/
|
47 |
|