Platinum SEO Pack - Version 1.2.5

Version Description

Download this release

Release Info

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

Code changes from version 1.2.4 to 1.2.5

Files changed (3) hide show
  1. Changelog.txt +5 -2
  2. platinum_seo_pack.php +8 -8
  3. readme.txt +2 -2
Changelog.txt CHANGED
@@ -1,8 +1,11 @@
 
 
 
 
1
  2009-05-18 Rajesh (http://techblissonline.com/) - Version 1.2.4
2
 
3
  * Introduced Option to generate Canonical URLs.
4
- * Introduced an Option to use tags as keywords for posts (Earlier tags were automatically included and now it is optional)
5
- * Intorudce an option to link to the plugin blog, if you cannot donate
6
  platinum_seo_pack.php
7
 
8
  2008-01-04 Rajesh (http://techblissonline.com/) - Version 1.2.3
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
 
7
  * Introduced Option to generate Canonical URLs.
8
+ * Introduced an Option to use tags as keywords for posts (Earlier tags were automatically included and now it is optional)
 
9
  platinum_seo_pack.php
10
 
11
  2008-01-04 Rajesh (http://techblissonline.com/) - Version 1.2.3
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.4
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.4";
33
 
34
  /** Max numbers of chars in auto-generated description */
35
  var $max_description_length = 160;
@@ -826,11 +826,11 @@ class Platinum_SEO_Pack {
826
  $tokens = explode(' ', $s);
827
  while (list($key, $val) = each($tokens)) {
828
  $tokens[$key] = trim($tokens[$key]);
829
- if (function_exists('mb_strtoupper')) {
830
  $tokens[$key] = mb_strtoupper(substr($tokens[$key], 0, 1)) . substr($tokens[$key], 1);
831
- } else {
832
  $tokens[$key] = strtoupper(substr($tokens[$key], 0, 1)) . substr($tokens[$key], 1);
833
- }
834
  }
835
  $s = implode(' ', $tokens);
836
  return $s;
@@ -2082,7 +2082,7 @@ _e('Check this and Platinum SEO pack will create a log of important events (plat
2082
  <input type="checkbox" name="psp_link_home" <?php if (get_option('psp_link_home')) echo "checked=\"1\""; ?>/>
2083
  <div style="max-width:500px; text-align:left; display:none" id="psp_link_home_tip">
2084
  <?php
2085
- _e('Check this to link to Platinum SEO and spread the word.If you do not want to donate, atleast link to home.', 'platinum_seo_pack');
2086
  ?>
2087
  </div>
2088
  </td>
@@ -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", 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');
@@ -2141,7 +2141,7 @@ add_option("aiosp_post_meta_tags", '', 'Platinum SEO Plugin Additional Post Meta
2141
  add_option("aiosp_page_meta_tags", '', 'Platinum SEO Plugin Additional Post Meta Tags', 'yes');
2142
  add_option("aiosp_home_meta_tags", '', 'Platinum SEO Plugin Additional Home Meta Tags', 'yes');
2143
  add_option("aiosp_do_log", null, 'Platinum SEO Plugin write log file', 'yes');
2144
- add_option("psp_link_home", 1, 'Platinum SEO Plugin write log file', 'yes');
2145
 
2146
  $psp = new Platinum_SEO_Pack();
2147
  add_action('wp_head', array($psp, 'echo_to_blog_header'));
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
 
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;
826
  $tokens = explode(' ', $s);
827
  while (list($key, $val) = each($tokens)) {
828
  $tokens[$key] = trim($tokens[$key]);
829
+ /*if (function_exists('mb_strtoupper')) {
830
  $tokens[$key] = mb_strtoupper(substr($tokens[$key], 0, 1)) . substr($tokens[$key], 1);
831
+ } else {*/
832
  $tokens[$key] = strtoupper(substr($tokens[$key], 0, 1)) . substr($tokens[$key], 1);
833
+ /*}*/
834
  }
835
  $s = implode(' ', $tokens);
836
  return $s;
2082
  <input type="checkbox" name="psp_link_home" <?php if (get_option('psp_link_home')) echo "checked=\"1\""; ?>/>
2083
  <div style="max-width:500px; text-align:left; display:none" id="psp_link_home_tip">
2084
  <?php
2085
+ _e('Check this to link to Platinum SEO and spread the word.If you do not want to donate, atleast link to home.Linking would not hurt your site in any way.Think twice before you decide not to link', 'platinum_seo_pack');
2086
  ?>
2087
  </div>
2088
  </td>
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');
2141
  add_option("aiosp_page_meta_tags", '', 'Platinum SEO Plugin Additional Post Meta Tags', 'yes');
2142
  add_option("aiosp_home_meta_tags", '', 'Platinum SEO Plugin Additional Home Meta Tags', 'yes');
2143
  add_option("aiosp_do_log", null, 'Platinum SEO Plugin write log file', 'yes');
2144
+ add_option("psp_link_home", 1, 'Platinum SEO Plugin link option', 'yes');
2145
 
2146
  $psp = new Platinum_SEO_Pack();
2147
  add_action('wp_head', array($psp, 'echo_to_blog_header'));
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: Techblissonline Dot Com (Rajesh)
3
  Donate link: http://techblissonline.com/platinum-seo-pack/
4
  Tags: seo, plugin, wordpress, posts, google, meta index,meta keywords,meta description,title,post, wordpress seo, platinum seo, seo plugin
5
  Requires at least: 1.5
6
- Tested up to: 2.7
7
  Stable tag: trunk
8
 
9
  Platinum SEO Plugin offers Complete onsite SEO solution for your Wordpress blog.Platinum SEO Plugin offers all the functionalities of All In One SEO plus more cooler onsite SEO options. It is automatic and also imports all your current settings in All in one SEO Plugin.But you need to disable All In One SEO before enabling Platinum SEO.
@@ -18,7 +18,7 @@ Platinum SEO Plugin offers Complete onsite SEO solution for your Wordpress blog.
18
 
19
  Some features:
20
 
21
- * Automatic 301 redirects for any permalink changes
22
  * Optimized Post and Page Titles for search engines
23
  * Generates all SEO relevant META tags automatically
24
  * Helps you avoid duplicate content
3
  Donate link: http://techblissonline.com/platinum-seo-pack/
4
  Tags: seo, plugin, wordpress, posts, google, meta index,meta keywords,meta description,title,post, wordpress seo, platinum seo, seo plugin
5
  Requires at least: 1.5
6
+ Tested up to: 2.7.1
7
  Stable tag: trunk
8
 
9
  Platinum SEO Plugin offers Complete onsite SEO solution for your Wordpress blog.Platinum SEO Plugin offers all the functionalities of All In One SEO plus more cooler onsite SEO options. It is automatic and also imports all your current settings in All in one SEO Plugin.But you need to disable All In One SEO before enabling Platinum SEO.
18
 
19
  Some features:
20
 
21
+ * Automatic 301 redirects for any permalink changes
22
  * Optimized Post and Page Titles for search engines
23
  * Generates all SEO relevant META tags automatically
24
  * Helps you avoid duplicate content