Version Description
Download this release
Release Info
Developer | uberdose |
Plugin | All in One SEO Pack |
Version | 1.4.3.4 |
Comparing to | |
See all releases |
Code changes from version 1.4.3.3 to 1.4.3.4
- all_in_one_seo_pack.php +11 -7
- all_in_one_seo_pack.pot +6 -0
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.4.3.
|
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.4.3.
|
32 |
|
33 |
/** Max numbers of chars in auto-generated description */
|
34 |
var $maximum_description_length = 160;
|
@@ -147,11 +147,11 @@ class All_in_One_SEO_Pack {
|
|
147 |
strtolower('All_in_One_SEO_Pack::output_callback_for_title')) {
|
148 |
ob_end_flush();
|
149 |
} else {
|
|
|
150 |
// if we get here there *could* be trouble with another plugin :(
|
151 |
$this->ob_start_detected = true;
|
152 |
-
echo "\n";
|
153 |
foreach (ob_list_handlers() as $handler) {
|
154 |
-
|
155 |
}
|
156 |
}
|
157 |
}
|
@@ -994,10 +994,14 @@ class All_in_One_SEO_Pack {
|
|
994 |
if (substr($wp_version, 0, 3) == '1.5') {
|
995 |
$file = 'all-in-one-seo-pack/all_in_one_seo_pack.php';
|
996 |
}
|
997 |
-
|
|
|
998 |
}
|
999 |
|
1000 |
-
function
|
|
|
|
|
|
|
1001 |
$message = null;
|
1002 |
$message_updated = __("All in One SEO Options Updated.", 'all_in_one_seo_pack');
|
1003 |
|
@@ -1486,7 +1490,7 @@ _e('Check this and SEO pack will create a log of important events (all_in_one_se
|
|
1486 |
</div>
|
1487 |
<?php
|
1488 |
|
1489 |
-
} //
|
1490 |
|
1491 |
}
|
1492 |
|
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.4.3.4
|
8 |
Author: uberdose
|
9 |
Author URI: http://wp.uberdose.com/
|
10 |
*/
|
28 |
|
29 |
class All_in_One_SEO_Pack {
|
30 |
|
31 |
+
var $version = "1.4.3.4";
|
32 |
|
33 |
/** Max numbers of chars in auto-generated description */
|
34 |
var $maximum_description_length = 160;
|
147 |
strtolower('All_in_One_SEO_Pack::output_callback_for_title')) {
|
148 |
ob_end_flush();
|
149 |
} else {
|
150 |
+
$this->log("another plugin interfering?");
|
151 |
// if we get here there *could* be trouble with another plugin :(
|
152 |
$this->ob_start_detected = true;
|
|
|
153 |
foreach (ob_list_handlers() as $handler) {
|
154 |
+
$this->log("detected output handler $handler");
|
155 |
}
|
156 |
}
|
157 |
}
|
994 |
if (substr($wp_version, 0, 3) == '1.5') {
|
995 |
$file = 'all-in-one-seo-pack/all_in_one_seo_pack.php';
|
996 |
}
|
997 |
+
//add_menu_page(__('All in One SEO Title', 'all_in_one_seo_pack'), __('All in One SEO', 'all_in_one_seo_pack'), 0, $file, array($this, 'dashboard_menu'));
|
998 |
+
add_submenu_page('options-general.php', __('All in One SEO', 'all_in_one_seo_pack'), __('All in One SEO', 'all_in_one_seo_pack'), 0, $file, array($this, 'options_menu'));
|
999 |
}
|
1000 |
|
1001 |
+
function dashboard_menu() {
|
1002 |
+
}
|
1003 |
+
|
1004 |
+
function options_menu() {
|
1005 |
$message = null;
|
1006 |
$message_updated = __("All in One SEO Options Updated.", 'all_in_one_seo_pack');
|
1007 |
|
1490 |
</div>
|
1491 |
<?php
|
1492 |
|
1493 |
+
} // options_menu
|
1494 |
|
1495 |
}
|
1496 |
|
all_in_one_seo_pack.pot
CHANGED
@@ -259,3 +259,9 @@ msgstr ""
|
|
259 |
msgid "Part %page%"
|
260 |
msgstr ""
|
261 |
|
|
|
|
|
|
|
|
|
|
|
|
259 |
msgid "Part %page%"
|
260 |
msgstr ""
|
261 |
|
262 |
+
msgid "Log important events:"
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
msgid "Check this and SEO pack will create a log of important events (all_in_one_seo_pack.log) in its plugin directory which might help debugging it. Make sure this directory is writable."
|
266 |
+
msgstr ""
|
267 |
+
|