P3 (Plugin Performance Profiler) - Version 1.0.2

Version Description

  • Fixed an error message when clicking "stop scan" too fast
    • Brought plugin version from php file in line with version from readme.txt and tag
Download this release

Release Info

Developer StarfieldTech
Plugin Icon wp plugin P3 (Plugin Performance Profiler)
Version 1.0.2
Comparing to
See all releases

Code changes from version 1.0.1 to 1.0.2

Files changed (2) hide show
  1. p3-profiler.php +2 -2
  2. readme.txt +5 -9
p3-profiler.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: P3 (Plugin Performance Profiler)
4
  Plugin URI: http://support.godaddy.com/godaddy/wordpress-p3-plugin/
5
  Description: See which plugins are slowing down your site. Create a profile of your WordPress site's plugins' performance by measuring their impact on your site's load time.
6
  Author: GoDaddy.com
7
- Version: 1.0
8
  Author URI: http://www.godaddy.com/
9
  */
10
 
@@ -406,7 +406,7 @@ class P3_Profiler_Plugin {
406
  $this->add_notice( 'Turned off performance scanning.' );
407
 
408
  // Return the last filename
409
- if ( property_exists( $v, 'name' ) ) {
410
  echo $v->name . '.json';
411
  die();
412
  } else {
4
  Plugin URI: http://support.godaddy.com/godaddy/wordpress-p3-plugin/
5
  Description: See which plugins are slowing down your site. Create a profile of your WordPress site's plugins' performance by measuring their impact on your site's load time.
6
  Author: GoDaddy.com
7
+ Version: 1.0.2
8
  Author URI: http://www.godaddy.com/
9
  */
10
 
406
  $this->add_notice( 'Turned off performance scanning.' );
407
 
408
  // Return the last filename
409
+ if ( !empty( $v ) && is_object( $v ) && property_exists( $v, 'name' ) ) {
410
  echo $v->name . '.json';
411
  die();
412
  } else {
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: Godaddy, StarfieldTech
3
  Tags: debug, debugging, developer, development, performance, plugin, profiler, speed
4
  Requires at least: 3.3
5
  Tested up to: 3.3
6
- Stable tag: 1.0.1
7
 
8
  See which plugins are slowing down your site. This plugin creates a performance report for your site.
9
 
@@ -43,16 +43,12 @@ Manual installation:
43
  == Frequently Asked Questions ==
44
  No FAQs yet.
45
 
46
- == Upgrade Notice ==
47
-
48
- = 1.0.1 =
49
- * readme.txt updates
50
-
51
- = 1.0 =
52
- * Initial release
53
-
54
  == Changelog ==
55
 
 
 
 
 
56
  = 1.0.1 =
57
  * readme.txt changes
58
 
3
  Tags: debug, debugging, developer, development, performance, plugin, profiler, speed
4
  Requires at least: 3.3
5
  Tested up to: 3.3
6
+ Stable tag: 1.0.2
7
 
8
  See which plugins are slowing down your site. This plugin creates a performance report for your site.
9
 
43
  == Frequently Asked Questions ==
44
  No FAQs yet.
45
 
 
 
 
 
 
 
 
 
46
  == Changelog ==
47
 
48
+ = 1.0.2 =
49
+ * Fixed an error message when clicking "stop scan" too fast
50
+ * Brought plugin version from php file in line with version from readme.txt and tag
51
+
52
  = 1.0.1 =
53
  * readme.txt changes
54