All in One SEO Pack - Version 1.4.3.9

Version Description

Download this release

Release Info

Developer uberdose
Plugin Icon 128x128 All in One SEO Pack
Version 1.4.3.9
Comparing to
See all releases

Code changes from version 1.4.3.8 to 1.4.3.9

Files changed (1) hide show
  1. all_in_one_seo_pack.php +6 -6
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
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.8";
32
 
33
  /** Max numbers of chars in auto-generated description */
34
  var $maximum_description_length = 160;
@@ -86,7 +86,7 @@ class All_in_One_SEO_Pack {
86
  }
87
 
88
  if (is_single() || is_page()) {
89
- $aiosp_disable = htmlspecialchars(stripcslashes(get_post_meta($post->ID, 'aiosp_disable', false)));
90
  if ($aiosp_disable) {
91
  return;
92
  }
@@ -139,7 +139,7 @@ class All_in_One_SEO_Pack {
139
  $meta_string = null;
140
 
141
  if (is_single() || is_page()) {
142
- $aiosp_disable = htmlspecialchars(stripcslashes(get_post_meta($post->ID, 'aiosp_disable', false)));
143
  if ($aiosp_disable) {
144
  return;
145
  }
@@ -893,7 +893,7 @@ class All_in_One_SEO_Pack {
893
  $title = htmlspecialchars(stripcslashes(get_post_meta($post_id, 'title', true)));
894
  $description = htmlspecialchars(stripcslashes(get_post_meta($post_id, 'description', true)));
895
  $aiosp_meta = htmlspecialchars(stripcslashes(get_post_meta($post_id, 'aiosp_meta', true)));
896
- $aiosp_disable = htmlspecialchars(stripcslashes(get_post_meta($post_id, 'aiosp_disable', false)));
897
  ?>
898
  <SCRIPT LANGUAGE="JavaScript">
899
  <!-- Begin
@@ -961,7 +961,7 @@ class All_in_One_SEO_Pack {
961
  $description = htmlspecialchars(stripcslashes(get_post_meta($post->ID, 'description', true)));
962
  $title = htmlspecialchars(stripcslashes(get_post_meta($post->ID, 'title', true)));
963
  $aiosp_meta = htmlspecialchars(stripcslashes(get_post_meta($post_id, 'aiosp_meta', true)));
964
- $aiosp_disable = htmlspecialchars(stripcslashes(get_post_meta($post_id, 'aiosp_disable', false)));
965
  ?>
966
  <SCRIPT LANGUAGE="JavaScript">
967
  <!-- Begin
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.9
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.9";
32
 
33
  /** Max numbers of chars in auto-generated description */
34
  var $maximum_description_length = 160;
86
  }
87
 
88
  if (is_single() || is_page()) {
89
+ $aiosp_disable = htmlspecialchars(stripcslashes(get_post_meta($post->ID, 'aiosp_disable', true)));
90
  if ($aiosp_disable) {
91
  return;
92
  }
139
  $meta_string = null;
140
 
141
  if (is_single() || is_page()) {
142
+ $aiosp_disable = htmlspecialchars(stripcslashes(get_post_meta($post->ID, 'aiosp_disable', true)));
143
  if ($aiosp_disable) {
144
  return;
145
  }
893
  $title = htmlspecialchars(stripcslashes(get_post_meta($post_id, 'title', true)));
894
  $description = htmlspecialchars(stripcslashes(get_post_meta($post_id, 'description', true)));
895
  $aiosp_meta = htmlspecialchars(stripcslashes(get_post_meta($post_id, 'aiosp_meta', true)));
896
+ $aiosp_disable = htmlspecialchars(stripcslashes(get_post_meta($post_id, 'aiosp_disable', true)));
897
  ?>
898
  <SCRIPT LANGUAGE="JavaScript">
899
  <!-- Begin
961
  $description = htmlspecialchars(stripcslashes(get_post_meta($post->ID, 'description', true)));
962
  $title = htmlspecialchars(stripcslashes(get_post_meta($post->ID, 'title', true)));
963
  $aiosp_meta = htmlspecialchars(stripcslashes(get_post_meta($post_id, 'aiosp_meta', true)));
964
+ $aiosp_disable = htmlspecialchars(stripcslashes(get_post_meta($post_id, 'aiosp_disable', true)));
965
  ?>
966
  <SCRIPT LANGUAGE="JavaScript">
967
  <!-- Begin