P3 (Plugin Performance Profiler) - Version 1.5.3.8

Version Description

Bugfix for HTML element with space in the id

Download this release

Release Info

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

Code changes from version 1.5.3.7 to 1.5.3.8

Files changed (3) hide show
  1. p3-profiler.php +2 -2
  2. readme.txt +9 -9
  3. templates/view-scan.php +1 -1
p3-profiler.php CHANGED
@@ -4,13 +4,13 @@ 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.5.3.7
8
  Author URI: http://www.godaddy.com/
9
  Text Domain: p3-profiler
10
  Domain Path: /languages
11
  */
12
 
13
- define( 'P3_VERSION', '1.5.3.7' );
14
 
15
  // Make sure it's wordpress
16
  if ( !defined( 'ABSPATH') )
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.5.3.8
8
  Author URI: http://www.godaddy.com/
9
  Text Domain: p3-profiler
10
  Domain Path: /languages
11
  */
12
 
13
+ define( 'P3_VERSION', '1.5.3.8' );
14
 
15
  // Make sure it's wordpress
16
  if ( !defined( 'ABSPATH') )
readme.txt CHANGED
@@ -1,9 +1,9 @@
1
  === P3 (Plugin Performance Profiler) ===
2
- Contributors: Godaddy, StarfieldTech, kurtpayne
3
  Tags: debug, debugging, developer, development, performance, plugin, profiler, speed
4
  Requires at least: 3.3
5
  Tested up to: 4.1
6
- Stable tag: 1.5.3.7
7
  License: GPLv2
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -46,7 +46,10 @@ Manual installation:
46
  4. Then activate the Plugin from Plugins page.
47
 
48
  == Upgrade Notice ==
49
- = 1.5.3.7
 
 
 
50
  Ensure HTML element names are distinct. Props mogulbuster
51
 
52
  = 1.5.3.6 =
@@ -123,12 +126,6 @@ Warning messages like this: `Warning: usort() [function.usort]: Array was modifi
123
 
124
  Previous version of the plugin (before 1.1.0) did not have theme name detection support. If you performed a scan with a previous version, then upgraded to 1.1.0+ to view the scan, the theme name will show as "unknown."
125
 
126
- = How do I get support for P3? =
127
-
128
- We love to make P3 better. When reporting a bug, please visit this page so we can get more information: [http://x.co/p3support](http://x.co/p3support)
129
-
130
- Thanks!
131
-
132
  = Help! I used P3 and now my site is down! =
133
 
134
  First, get your site back up! There are two ways to do this. Try the emergency shutoff switch first. If that doesn't work, delete the plugin files.
@@ -168,6 +165,9 @@ add_filter( 'p3_automatic_scan_urls', 'my_p3_auto_scan_pages' );
168
  </code>
169
 
170
  == Changelog ==
 
 
 
171
  = 1.5.3.7 =
172
  Ensure HTML element names are distinct. Props mogulbuster
173
 
1
  === P3 (Plugin Performance Profiler) ===
2
+ Contributors: Godaddy, StarfieldTech, kurtpayne, asink
3
  Tags: debug, debugging, developer, development, performance, plugin, profiler, speed
4
  Requires at least: 3.3
5
  Tested up to: 4.1
6
+ Stable tag: 1.5.3.8
7
  License: GPLv2
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
46
  4. Then activate the Plugin from Plugins page.
47
 
48
  == Upgrade Notice ==
49
+ = 1.5.3.8 =
50
+ Bugfix for HTML element with space in the id
51
+
52
+ = 1.5.3.7 =
53
  Ensure HTML element names are distinct. Props mogulbuster
54
 
55
  = 1.5.3.6 =
126
 
127
  Previous version of the plugin (before 1.1.0) did not have theme name detection support. If you performed a scan with a previous version, then upgraded to 1.1.0+ to view the scan, the theme name will show as "unknown."
128
 
 
 
 
 
 
 
129
  = Help! I used P3 and now my site is down! =
130
 
131
  First, get your site back up! There are two ways to do this. Try the emergency shutoff switch first. If that doesn't work, delete the plugin files.
165
  </code>
166
 
167
  == Changelog ==
168
+ = 1.5.3.8 =
169
+ Bugfix for HTML element with space in the id
170
+
171
  = 1.5.3.7 =
172
  Ensure HTML element names are distinct. Props mogulbuster
173
 
templates/view-scan.php CHANGED
@@ -8,7 +8,7 @@ if ( !empty( self::$profile ) ) {
8
  $domain = @parse_url( self::$profile->report_url, PHP_URL_HOST );
9
  }
10
  $pie_chart_id = 'pie_' . substr( md5( uniqid() ), -8 );
11
- $runtime_chart_id = 'runtime_ ' . substr( md5( uniqid() ), -8 );
12
  $query_chart_id = 'query_' . substr( md5( uniqid() ), -8 );
13
  $component_breakdown_chart_id = 'breakdown_' . substr( md5( uniqid() ), -8 );
14
  $component_runtime_chart_id = 'runtime2_' . substr( md5( uniqid() ), -8 );
8
  $domain = @parse_url( self::$profile->report_url, PHP_URL_HOST );
9
  }
10
  $pie_chart_id = 'pie_' . substr( md5( uniqid() ), -8 );
11
+ $runtime_chart_id = 'runtime_' . substr( md5( uniqid() ), -8 );
12
  $query_chart_id = 'query_' . substr( md5( uniqid() ), -8 );
13
  $component_breakdown_chart_id = 'breakdown_' . substr( md5( uniqid() ), -8 );
14
  $component_runtime_chart_id = 'runtime2_' . substr( md5( uniqid() ), -8 );