Version Description
Download this release
Release Info
Developer | uberdose |
Plugin | All in One SEO Pack |
Version | 1.2.5.8 |
Comparing to | |
See all releases |
Code changes from version 1.2.5.7 to 1.2.5.8
- all_in_one_seo_pack.php +8 -8
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.5.
|
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.5.
|
32 |
|
33 |
/**
|
34 |
* Number of words to be used (max) for generating an excerpt.
|
@@ -393,9 +393,9 @@ class All_in_One_SEO_Pack {
|
|
393 |
|
394 |
function add_meta_tags_textinput() {
|
395 |
global $post;
|
396 |
-
$keywords = stripslashes(get_post_meta($post->ID, 'keywords', true));
|
397 |
-
$title = stripslashes(get_post_meta($post->ID, 'title', true));
|
398 |
-
$description = stripslashes(get_post_meta($post->ID, 'description', true));
|
399 |
?>
|
400 |
<input value="aiosp_edit" type="hidden" name="aiosp_edit" />
|
401 |
<table style="margin-bottom:40px; margin-top:30px;">
|
@@ -422,9 +422,9 @@ class All_in_One_SEO_Pack {
|
|
422 |
|
423 |
function add_meta_tags_page_textinput() {
|
424 |
global $post;
|
425 |
-
$keywords = stripslashes(get_post_meta($post->ID, 'keywords', true));
|
426 |
-
$description = stripslashes(get_post_meta($post->ID, 'description', true));
|
427 |
-
$title = stripslashes(get_post_meta($post->ID, 'title', true));
|
428 |
?>
|
429 |
<input value="aiosp_edit" type="hidden" name="aiosp_edit"/>
|
430 |
<table style="margin-bottom:40px; margin-top:30px;">
|
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.5.8
|
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.5.8";
|
32 |
|
33 |
/**
|
34 |
* Number of words to be used (max) for generating an excerpt.
|
393 |
|
394 |
function add_meta_tags_textinput() {
|
395 |
global $post;
|
396 |
+
$keywords = htmlspecialchars(stripslashes(get_post_meta($post->ID, 'keywords', true)));
|
397 |
+
$title = htmlspecialchars(stripslashes(get_post_meta($post->ID, 'title', true)));
|
398 |
+
$description = htmlspecialchars(stripslashes(get_post_meta($post->ID, 'description', true)));
|
399 |
?>
|
400 |
<input value="aiosp_edit" type="hidden" name="aiosp_edit" />
|
401 |
<table style="margin-bottom:40px; margin-top:30px;">
|
422 |
|
423 |
function add_meta_tags_page_textinput() {
|
424 |
global $post;
|
425 |
+
$keywords = htmlspecialchars(stripslashes(get_post_meta($post->ID, 'keywords', true)));
|
426 |
+
$description = htmlspecialchars(stripslashes(get_post_meta($post->ID, 'description', true)));
|
427 |
+
$title = htmlspecialchars(stripslashes(get_post_meta($post->ID, 'title', true)));
|
428 |
?>
|
429 |
<input value="aiosp_edit" type="hidden" name="aiosp_edit"/>
|
430 |
<table style="margin-bottom:40px; margin-top:30px;">
|