Version Description
Fixed logic bug in determining debug_backtrace arguements
Download this release
Release Info
Developer | StarfieldTech |
Plugin | P3 (Plugin Performance Profiler) |
Version | 1.5.3.1 |
Comparing to | |
See all releases |
Code changes from version 1.5.3 to 1.5.3.1
- classes/class.p3-profiler.php +4 -1
- p3-profiler.php +1 -1
- readme.txt +7 -1
classes/class.p3-profiler.php
CHANGED
@@ -288,8 +288,11 @@ class P3_Profiler {
|
|
288 |
static $is_536;
|
289 |
|
290 |
if ( $is_540 == null ) {
|
291 |
-
if (
|
|
|
292 |
$is_536 = version_compare( PHP_VERSION, '5.3.6', '>=' );
|
|
|
|
|
293 |
}
|
294 |
}
|
295 |
|
288 |
static $is_536;
|
289 |
|
290 |
if ( $is_540 == null ) {
|
291 |
+
if ( version_compare( PHP_VERSION, '5.4.0', '>=' ) == false ) {
|
292 |
+
$is_540 = false;
|
293 |
$is_536 = version_compare( PHP_VERSION, '5.3.6', '>=' );
|
294 |
+
} else {
|
295 |
+
$is_540 = true;
|
296 |
}
|
297 |
}
|
298 |
|
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.5.3
|
8 |
Author URI: http://www.godaddy.com/
|
9 |
Text Domain: p3-profiler
|
10 |
Domain Path: /languages
|
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.1
|
8 |
Author URI: http://www.godaddy.com/
|
9 |
Text Domain: p3-profiler
|
10 |
Domain Path: /languages
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: Godaddy, StarfieldTech, kurtpayne, cklosows
|
|
3 |
Tags: debug, debugging, developer, development, performance, plugin, profiler, speed
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 4.0
|
6 |
-
Stable tag: 1.5.3
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -47,6 +47,9 @@ Manual installation:
|
|
47 |
|
48 |
== Upgrade Notice ==
|
49 |
|
|
|
|
|
|
|
50 |
= 1.5.3 =
|
51 |
Improved scanner performance (props askapache). Fixed a CSS conflict in overlays
|
52 |
|
@@ -149,6 +152,9 @@ add_filter( 'p3_automatic_scan_urls', 'my_p3_auto_scan_pages' );
|
|
149 |
|
150 |
== Changelog ==
|
151 |
|
|
|
|
|
|
|
152 |
= 1.5.3 =
|
153 |
* Improved scanner performance (props askapache)
|
154 |
* Fix a CSS conflict in overlays
|
3 |
Tags: debug, debugging, developer, development, performance, plugin, profiler, speed
|
4 |
Requires at least: 3.3
|
5 |
Tested up to: 4.0
|
6 |
+
Stable tag: 1.5.3.1
|
7 |
License: GPLv2
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
47 |
|
48 |
== Upgrade Notice ==
|
49 |
|
50 |
+
= 1.5.3.1 =
|
51 |
+
Fixed logic bug in determining debug_backtrace arguements
|
52 |
+
|
53 |
= 1.5.3 =
|
54 |
Improved scanner performance (props askapache). Fixed a CSS conflict in overlays
|
55 |
|
152 |
|
153 |
== Changelog ==
|
154 |
|
155 |
+
= 1.5.3.1 =
|
156 |
+
* Fixed logic bug in determining debug_backtrace arguements
|
157 |
+
|
158 |
= 1.5.3 =
|
159 |
* Improved scanner performance (props askapache)
|
160 |
* Fix a CSS conflict in overlays
|