Platinum SEO Pack - Version 1.2.6

Version Description

Download this release

Release Info

Developer Rajesh Babu
Plugin Icon 128x128 Platinum SEO Pack
Version 1.2.6
Comparing to
See all releases

Code changes from version 1.2.5 to 1.2.6

Files changed (2) hide show
  1. Changelog.txt +6 -0
  2. platinum_seo_pack.php +5 -5
Changelog.txt CHANGED
@@ -1,6 +1,12 @@
 
 
 
 
 
1
  2009-05-24 Rajesh (http://techblissonline.com/) - Version 1.2.5
2
 
3
  * Corrected a minor characterset problem for an european language (Bulgarian).
 
4
 
5
  2009-05-18 Rajesh (http://techblissonline.com/) - Version 1.2.4
6
 
1
+ 2009-05-25 Rajesh (http://techblissonline.com/) - Version 1.2.6
2
+
3
+ * Corrected a minor problem with canonical link.
4
+ platinum_seo_pack.php
5
+
6
  2009-05-24 Rajesh (http://techblissonline.com/) - Version 1.2.5
7
 
8
  * Corrected a minor characterset problem for an european language (Bulgarian).
9
+ platinum_seo_pack.php
10
 
11
  2009-05-18 Rajesh (http://techblissonline.com/) - Version 1.2.4
12
 
platinum_seo_pack.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: Platinum SEO Pack
5
  Plugin URI: http://techblissonline.com/platinum-seo-pack/
6
  Description: Complete SEO solution for your Wordpress blog.
7
- Version: 1.2.5
8
  Author: Rajesh - Techblissonline Dot Com
9
  Author URI: http://techblissonline.com/
10
  */
@@ -29,7 +29,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
29
 
30
  class Platinum_SEO_Pack {
31
 
32
- var $version = "1.2.5";
33
 
34
  /** Max numbers of chars in auto-generated description */
35
  var $max_description_length = 160;
@@ -358,7 +358,7 @@ class Platinum_SEO_Pack {
358
  if ($canonical) {
359
  $post_link = get_permalink($post->ID);
360
  $can_link = $this->paged_link($post_link);
361
- $can_link = trailingslashit($can_link);
362
  }
363
  // }
364
  } else if (is_home()) {
@@ -432,7 +432,7 @@ class Platinum_SEO_Pack {
432
  } else {
433
  global $cache_userdata;
434
  $userid = get_query_var('author');
435
- $auth_link = get_author_link(false, $userid, $cache_userdata[$userid]->user_nicename);
436
  $can_link = $this->paged_link($auth_link);
437
  }
438
  }
@@ -2103,7 +2103,7 @@ _e('Check this to link to Platinum SEO and spread the word.If you do not want to
2103
 
2104
  add_option("aiosp_home_description", null, 'Platinum SEO Plugin Home Description', 'yes');
2105
  add_option("aiosp_home_title", null, 'Platinum SEO Plugin Home Title', 'yes');
2106
- add_option("psp_canonical", 0, 'Platinum SEO Plugin Canonical URLs', 'yes');
2107
  add_option("aiosp_home_keywords", null, 'Platinum SEO Plugin Home Title', 'yes');
2108
  add_option("aiosp_rewrite_titles", 1, 'Platinum SEO Plugin Rewrite Titles', 'yes');
2109
  add_option("aiosp_use_categories", 0, 'Platinum SEO Plugin Use Categories', 'yes');
4
  Plugin Name: Platinum SEO Pack
5
  Plugin URI: http://techblissonline.com/platinum-seo-pack/
6
  Description: Complete SEO solution for your Wordpress blog.
7
+ Version: 1.2.6
8
  Author: Rajesh - Techblissonline Dot Com
9
  Author URI: http://techblissonline.com/
10
  */
29
 
30
  class Platinum_SEO_Pack {
31
 
32
+ var $version = "1.2.6";
33
 
34
  /** Max numbers of chars in auto-generated description */
35
  var $max_description_length = 160;
358
  if ($canonical) {
359
  $post_link = get_permalink($post->ID);
360
  $can_link = $this->paged_link($post_link);
361
+ //$can_link = trailingslashit($can_link);
362
  }
363
  // }
364
  } else if (is_home()) {
432
  } else {
433
  global $cache_userdata;
434
  $userid = get_query_var('author');
435
+ $can_link = get_author_link(false, $userid, $cache_userdata[$userid]->user_nicename);
436
  $can_link = $this->paged_link($auth_link);
437
  }
438
  }
2103
 
2104
  add_option("aiosp_home_description", null, 'Platinum SEO Plugin Home Description', 'yes');
2105
  add_option("aiosp_home_title", null, 'Platinum SEO Plugin Home Title', 'yes');
2106
+ add_option("psp_canonical", 1, 'Platinum SEO Plugin Canonical URLs', 'yes');
2107
  add_option("aiosp_home_keywords", null, 'Platinum SEO Plugin Home Title', 'yes');
2108
  add_option("aiosp_rewrite_titles", 1, 'Platinum SEO Plugin Rewrite Titles', 'yes');
2109
  add_option("aiosp_use_categories", 0, 'Platinum SEO Plugin Use Categories', 'yes');