SEO Ultimate - Version 0.1.1

Version Description

Download this release

Release Info

Developer SEO Design Solutions
Plugin Icon 128x128 SEO Ultimate
Version 0.1.1
Comparing to
See all releases

Code changes from version 0.1 to 0.1.1

Files changed (3) hide show
  1. modules/titles.php +2 -2
  2. readme.txt +1 -1
  3. seo-ultimate.php +6 -5
modules/titles.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Title Rewriter Module
4
  *
5
- * @version 1.0
6
  * @since 0.1
7
  */
8
 
@@ -99,7 +99,7 @@ class SU_Titles extends SU_Module {
99
  if (count($handlers) > 0 && strcasecmp($handlers[count($handlers)-1], 'SU_Titles::change_title_tag') == 0)
100
  ob_end_flush();
101
  else
102
- su_debug_log(__FILE__, __CLASS__, __FUNCTION__, __LINE__, "Other ob_list_handlers found:\n".print_r($handlers));
103
  }
104
  }
105
 
2
  /**
3
  * Title Rewriter Module
4
  *
5
+ * @version 1.0.1
6
  * @since 0.1
7
  */
8
 
99
  if (count($handlers) > 0 && strcasecmp($handlers[count($handlers)-1], 'SU_Titles::change_title_tag') == 0)
100
  ob_end_flush();
101
  else
102
+ su_debug_log(__FILE__, __CLASS__, __FUNCTION__, __LINE__, "Other ob_list_handlers found:\n".print_r($handlers, true));
103
  }
104
  }
105
 
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: SEO Design Solutions
3
  Tags: google, seo, title, meta
4
  Requires at least: 2.7
5
  Tested up to: 2.7.1
6
- Stable tag: 0.1
7
 
8
  This all-in-one SEO plugin can rewrite title tags and noindex archives (with many more features coming soon).
9
 
3
  Tags: google, seo, title, meta
4
  Requires at least: 2.7
5
  Tested up to: 2.7.1
6
+ Stable tag: 0.1.1
7
 
8
  This all-in-one SEO plugin can rewrite title tags and noindex archives (with many more features coming soon).
9
 
seo-ultimate.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: SEO Ultimate
4
  Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
5
  Description: This all-in-one SEO plugin can rewrite title tags and add noindex to pages (with many more features coming soon).
6
- Version: 0.1
7
  Author: SEO Design Solutions
8
  Author URI: http://www.seodesignsolutions.com/
9
  Text Domain: seo-ultimate
@@ -12,7 +12,7 @@ Text Domain: seo-ultimate
12
  /**
13
  * The main SEO Ultimate plugin file.
14
  * @package SeoUltimate
15
- * @version 0.1
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
@@ -38,10 +38,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
38
 
39
  define("SU_PLUGIN_NAME", "SEO Ultimate");
40
  define("SU_PLUGIN_URI", "http://www.seodesignsolutions.com/wordpress-seo/");
41
- define("SU_VERSION", "0.1");
42
  define("SU_AUTHOR", "SEO Design Solutions");
43
  define("SU_AUTHOR_URI", "http://www.seodesignsolutions.com/");
44
- define("SU_USER_AGENT", "SeoUltimate/0.1");
45
 
46
 
47
  /********** CLASSES **********/
@@ -1947,7 +1947,8 @@ class SU_Module {
1947
  $cell = sprintf(__('%1$s<br />%2$s', 'seo-ultimate'), $date, $time);
1948
  break;
1949
  case 'user_agent':
1950
- $cell = get_browser($cell)->parent;
 
1951
  break;
1952
  case 'url':
1953
  if ($actions_callback) {
3
  Plugin Name: SEO Ultimate
4
  Plugin URI: http://www.seodesignsolutions.com/wordpress-seo/
5
  Description: This all-in-one SEO plugin can rewrite title tags and add noindex to pages (with many more features coming soon).
6
+ Version: 0.1.1
7
  Author: SEO Design Solutions
8
  Author URI: http://www.seodesignsolutions.com/
9
  Text Domain: seo-ultimate
12
  /**
13
  * The main SEO Ultimate plugin file.
14
  * @package SeoUltimate
15
+ * @version 0.1.1
16
  * @link http://www.seodesignsolutions.com/wordpress-seo/ SEO Ultimate Homepage
17
  */
18
 
38
 
39
  define("SU_PLUGIN_NAME", "SEO Ultimate");
40
  define("SU_PLUGIN_URI", "http://www.seodesignsolutions.com/wordpress-seo/");
41
+ define("SU_VERSION", "0.1.1");
42
  define("SU_AUTHOR", "SEO Design Solutions");
43
  define("SU_AUTHOR_URI", "http://www.seodesignsolutions.com/");
44
+ define("SU_USER_AGENT", "SeoUltimate/0.1.1");
45
 
46
 
47
  /********** CLASSES **********/
1947
  $cell = sprintf(__('%1$s<br />%2$s', 'seo-ultimate'), $date, $time);
1948
  break;
1949
  case 'user_agent':
1950
+ $binfo = get_browser($cell, true);
1951
+ $cell = $binfo['parent'];
1952
  break;
1953
  case 'url':
1954
  if ($actions_callback) {