Version Description
Fix error checking in HTTP Requests panel.
Download this release
Release Info
Developer | aidvu |
Plugin | Debug Bar |
Version | 1.1.2 |
Comparing to | |
See all releases |
Code changes from version 1.1.1 to 1.1.2
- debug-bar.php +1 -1
- panels/class-debug-bar-wp-http.php +2 -2
- readme.txt +7 -1
debug-bar.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
Plugin URI: https://wordpress.org/plugins/debug-bar/
|
5 |
Description: Adds a debug menu to the admin bar that shows query, cache, and other helpful debugging information.
|
6 |
Author: wordpressdotorg
|
7 |
-
Version: 1.1.
|
8 |
Author URI: https://wordpress.org/
|
9 |
Text Domain: debug-bar
|
10 |
*/
|
4 |
Plugin URI: https://wordpress.org/plugins/debug-bar/
|
5 |
Description: Adds a debug menu to the admin bar that shows query, cache, and other helpful debugging information.
|
6 |
Author: wordpressdotorg
|
7 |
+
Version: 1.1.2
|
8 |
Author URI: https://wordpress.org/
|
9 |
Text Domain: debug-bar
|
10 |
*/
|
panels/class-debug-bar-wp-http.php
CHANGED
@@ -105,12 +105,12 @@ class Debug_Bar_WP_Http extends Debug_Bar_Panel {
|
|
105 |
}
|
106 |
|
107 |
$elapsed_class = '';
|
108 |
-
if ( $this->
|
109 |
$elapsed_class = 'debug_bar_http_error';
|
110 |
}
|
111 |
|
112 |
$errors_class = '';
|
113 |
-
if ( $this->
|
114 |
$errors_class = 'debug_bar_http_error';
|
115 |
}
|
116 |
|
105 |
}
|
106 |
|
107 |
$elapsed_class = '';
|
108 |
+
if ( $this->total_time > $this->time_limit ) {
|
109 |
$elapsed_class = 'debug_bar_http_error';
|
110 |
}
|
111 |
|
112 |
$errors_class = '';
|
113 |
+
if ( $this->num_errors > 0 ) {
|
114 |
$errors_class = 'debug_bar_http_error';
|
115 |
}
|
116 |
|
readme.txt
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
Contributors: wordpressdotorg, ryan, westi, koopersmith, duck_, mitchoyoshitaka, dd32, jrf, obenland, nacin, evansolomon, Otto42, aidvu, josephscott
|
3 |
Tags: debug
|
4 |
Tested up to: 5.5.3
|
5 |
-
Stable tag: 1.1.
|
6 |
Requires at least: 3.4
|
7 |
|
8 |
Adds a debug menu to the admin bar that shows query, cache, and other helpful debugging information.
|
@@ -29,6 +29,9 @@ There are numerous other add-ons available to get more insight into, for instanc
|
|
29 |
|
30 |
== Upgrade Notice ==
|
31 |
|
|
|
|
|
|
|
32 |
= 1.1.1 =
|
33 |
Refactor the HTTP Requests panel:
|
34 |
- Remove jQuery usage
|
@@ -112,6 +115,9 @@ Initial Release
|
|
112 |
|
113 |
== Changelog ==
|
114 |
|
|
|
|
|
|
|
115 |
= 1.1.1 =
|
116 |
Refactor the HTTP Requests panel:
|
117 |
- Remove jQuery usage
|
2 |
Contributors: wordpressdotorg, ryan, westi, koopersmith, duck_, mitchoyoshitaka, dd32, jrf, obenland, nacin, evansolomon, Otto42, aidvu, josephscott
|
3 |
Tags: debug
|
4 |
Tested up to: 5.5.3
|
5 |
+
Stable tag: 1.1.2
|
6 |
Requires at least: 3.4
|
7 |
|
8 |
Adds a debug menu to the admin bar that shows query, cache, and other helpful debugging information.
|
29 |
|
30 |
== Upgrade Notice ==
|
31 |
|
32 |
+
= 1.1.2 =
|
33 |
+
Fix error checking in HTTP Requests panel.
|
34 |
+
|
35 |
= 1.1.1 =
|
36 |
Refactor the HTTP Requests panel:
|
37 |
- Remove jQuery usage
|
115 |
|
116 |
== Changelog ==
|
117 |
|
118 |
+
= 1.1.2 =
|
119 |
+
Fix error checking in HTTP Requests panel.
|
120 |
+
|
121 |
= 1.1.1 =
|
122 |
Refactor the HTTP Requests panel:
|
123 |
- Remove jQuery usage
|