Version Description
Minor security fix.
Download this release
Release Info
| Developer | westi |
| Plugin | |
| Version | 0.8.1 |
| Comparing to | |
| See all releases | |
Code changes from version 0.8 to 0.8.1
- debug-bar.php +1 -1
- panels/class-debug-bar-queries.php +1 -1
- readme.txt +16 -1
debug-bar.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
Plugin URI: http://wordpress.org/extend/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: 0.8
|
| 8 |
Author URI: http://wordpress.org/
|
| 9 |
*/
|
| 10 |
|
| 4 |
Plugin URI: http://wordpress.org/extend/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: 0.8.1
|
| 8 |
Author URI: http://wordpress.org/
|
| 9 |
*/
|
| 10 |
|
panels/class-debug-bar-queries.php
CHANGED
|
@@ -25,7 +25,7 @@ class Debug_Bar_Queries extends Debug_Bar_Panel {
|
|
| 25 |
$show_many = isset($_GET['debug_queries']);
|
| 26 |
|
| 27 |
if ( $wpdb->num_queries > 500 && !$show_many )
|
| 28 |
-
$out .= "<p>" . sprintf( __('There are too many queries to show easily! <a href="%s">Show them anyway</a>', 'debug-bar'), add_query_arg( 'debug_queries', 'true' ) ) . "</p>";
|
| 29 |
|
| 30 |
$out .= '<ol class="wpd-queries">';
|
| 31 |
$counter = 0;
|
| 25 |
$show_many = isset($_GET['debug_queries']);
|
| 26 |
|
| 27 |
if ( $wpdb->num_queries > 500 && !$show_many )
|
| 28 |
+
$out .= "<p>" . sprintf( __('There are too many queries to show easily! <a href="%s">Show them anyway</a>', 'debug-bar'), esc_url( add_query_arg( 'debug_queries', 'true' ) ) ) . "</p>";
|
| 29 |
|
| 30 |
$out .= '<ol class="wpd-queries">';
|
| 31 |
$counter = 0;
|
readme.txt
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
=== Debug Bar ===
|
| 2 |
Contributors: wordpressdotorg, ryan, westi, koopersmith, duck_, mitchoyoshitaka
|
| 3 |
Tags: debug
|
| 4 |
-
Tested up to: 3.
|
| 5 |
Stable tag: 0.8
|
| 6 |
Requires at least: 3.1
|
| 7 |
|
|
@@ -21,6 +21,9 @@ Add a PHP/MySQL console with the [Debug Bar Console plugin](http://wordpress.org
|
|
| 21 |
|
| 22 |
== Upgrade Notice ==
|
| 23 |
|
|
|
|
|
|
|
|
|
|
| 24 |
= 0.8 =
|
| 25 |
WordPress 3.3 compatibility
|
| 26 |
UI refresh
|
|
@@ -69,6 +72,18 @@ Initial Release
|
|
| 69 |
|
| 70 |
== Changelog ==
|
| 71 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 72 |
= 0.7 =
|
| 73 |
Made compatible with PHP < 5.2.0
|
| 74 |
CSS Tweaks
|
| 1 |
=== Debug Bar ===
|
| 2 |
Contributors: wordpressdotorg, ryan, westi, koopersmith, duck_, mitchoyoshitaka
|
| 3 |
Tags: debug
|
| 4 |
+
Tested up to: 3.6
|
| 5 |
Stable tag: 0.8
|
| 6 |
Requires at least: 3.1
|
| 7 |
|
| 21 |
|
| 22 |
== Upgrade Notice ==
|
| 23 |
|
| 24 |
+
= 0.8.1 =
|
| 25 |
+
Minor security fix.
|
| 26 |
+
|
| 27 |
= 0.8 =
|
| 28 |
WordPress 3.3 compatibility
|
| 29 |
UI refresh
|
| 72 |
|
| 73 |
== Changelog ==
|
| 74 |
|
| 75 |
+
= 0.8.1 =
|
| 76 |
+
Minor security fix.
|
| 77 |
+
|
| 78 |
+
= 0.8 =
|
| 79 |
+
WordPress 3.3 compatibility
|
| 80 |
+
UI refresh
|
| 81 |
+
Removed jQuery UI requirement
|
| 82 |
+
Full screen by default
|
| 83 |
+
New debug-bar query parameter to show on page load
|
| 84 |
+
Removed display cookies
|
| 85 |
+
JavaScript error tracking (disabled by default)
|
| 86 |
+
|
| 87 |
= 0.7 =
|
| 88 |
Made compatible with PHP < 5.2.0
|
| 89 |
CSS Tweaks
|
