Version Description
Download this release
Release Info
Developer | uberdose |
Plugin | All in One SEO Pack |
Version | 1.2.8.3 |
Comparing to | |
See all releases |
Code changes from version 1.2.8.2 to 1.2.8.3
- all_in_one_seo_pack.php +5 -3
all_in_one_seo_pack.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin Name: All in One SEO Pack
|
5 |
Plugin URI: http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/
|
6 |
Description: Out-of-the-box SEO for your Wordpress blog.
|
7 |
-
Version: 1.2.8.
|
8 |
Author: uberdose
|
9 |
Author URI: http://wp.uberdose.com/
|
10 |
*/
|
@@ -28,7 +28,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
28 |
|
29 |
class All_in_One_SEO_Pack {
|
30 |
|
31 |
-
var $version = "1.2.8.
|
32 |
|
33 |
/**
|
34 |
* Max numbers of chars in auto-generated description.
|
@@ -95,7 +95,9 @@ class All_in_One_SEO_Pack {
|
|
95 |
if (get_option('aiosp_rewrite_titles')) {
|
96 |
// make the title rewrite as short as possible
|
97 |
$active_handlers = ob_list_handlers();
|
98 |
-
if (sizeof($active_handlers) > 0 &&
|
|
|
|
|
99 |
ob_end_flush();
|
100 |
} else {
|
101 |
// if we get here there *could* be trouble with another plugin :(
|
4 |
Plugin Name: All in One SEO Pack
|
5 |
Plugin URI: http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/
|
6 |
Description: Out-of-the-box SEO for your Wordpress blog.
|
7 |
+
Version: 1.2.8.3
|
8 |
Author: uberdose
|
9 |
Author URI: http://wp.uberdose.com/
|
10 |
*/
|
28 |
|
29 |
class All_in_One_SEO_Pack {
|
30 |
|
31 |
+
var $version = "1.2.8.3";
|
32 |
|
33 |
/**
|
34 |
* Max numbers of chars in auto-generated description.
|
95 |
if (get_option('aiosp_rewrite_titles')) {
|
96 |
// make the title rewrite as short as possible
|
97 |
$active_handlers = ob_list_handlers();
|
98 |
+
if (sizeof($active_handlers) > 0 &&
|
99 |
+
strtolower($active_handlers[sizeof($active_handlers) - 1]) ==
|
100 |
+
strtolower('All_in_One_SEO_Pack::output_callback_for_title')) {
|
101 |
ob_end_flush();
|
102 |
} else {
|
103 |
// if we get here there *could* be trouble with another plugin :(
|