Version Description
Download this release
Release Info
Developer | johnbillion |
Plugin | Query Monitor |
Version | 2.11.3 |
Comparing to | |
See all releases |
Code changes from version 2.11.2 to 2.11.3
- collectors/php_errors.php +4 -2
- query-monitor.php +2 -2
- readme.txt +1 -1
collectors/php_errors.php
CHANGED
@@ -83,8 +83,10 @@ class QM_Collector_PHP_Errors extends QM_Collector {
|
|
83 |
}
|
84 |
|
85 |
if ( ! isset( self::$unexpected_error ) ) {
|
86 |
-
|
87 |
-
|
|
|
|
|
88 |
}
|
89 |
|
90 |
// Intentionally skip reporting these core warnings. They're a distraction when developing offline.
|
83 |
}
|
84 |
|
85 |
if ( ! isset( self::$unexpected_error ) ) {
|
86 |
+
$unexpected_error = 'An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the <a href="https://wordpress.org/support/">support forums</a>.';
|
87 |
+
$wordpress_couldnt = '(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)';
|
88 |
+
self::$unexpected_error = __( $unexpected_error );
|
89 |
+
self::$wordpress_couldnt = __( $wordpress_couldnt );
|
90 |
}
|
91 |
|
92 |
// Intentionally skip reporting these core warnings. They're a distraction when developing offline.
|
query-monitor.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Query Monitor
|
4 |
Description: Monitoring of database queries, hooks, conditionals and more.
|
5 |
-
Version: 2.11.
|
6 |
Plugin URI: https://github.com/johnbillion/query-monitor
|
7 |
Author: John Blackbourn
|
8 |
Author URI: https://johnblackbourn.com/
|
@@ -50,7 +50,7 @@ if ( defined( 'DOING_CRON' ) && DOING_CRON ) {
|
|
50 |
return;
|
51 |
}
|
52 |
|
53 |
-
foreach ( array( 'QueryMonitor', 'Backtrace', 'Collectors', 'Collector', 'Dispatchers', 'Dispatcher', 'Output'
|
54 |
require_once "{$qm_dir}/classes/{$qm_class}.php";
|
55 |
}
|
56 |
|
2 |
/*
|
3 |
Plugin Name: Query Monitor
|
4 |
Description: Monitoring of database queries, hooks, conditionals and more.
|
5 |
+
Version: 2.11.3
|
6 |
Plugin URI: https://github.com/johnbillion/query-monitor
|
7 |
Author: John Blackbourn
|
8 |
Author URI: https://johnblackbourn.com/
|
50 |
return;
|
51 |
}
|
52 |
|
53 |
+
foreach ( array( 'QueryMonitor', 'Backtrace', 'Collectors', 'Collector', 'Dispatchers', 'Dispatcher', 'Output' ) as $qm_class ) {
|
54 |
require_once "{$qm_dir}/classes/{$qm_class}.php";
|
55 |
}
|
56 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: johnbillion
|
|
3 |
Tags: ajax, debug, debug-bar, debugging, development, developer, performance, profiler, profiling, queries, query monitor, rest-api
|
4 |
Requires at least: 3.7
|
5 |
Tested up to: 4.6
|
6 |
-
Stable tag: 2.11.
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
View debugging and performance information on database queries, hooks, conditionals, HTTP requests, redirects and more.
|
3 |
Tags: ajax, debug, debug-bar, debugging, development, developer, performance, profiler, profiling, queries, query monitor, rest-api
|
4 |
Requires at least: 3.7
|
5 |
Tested up to: 4.6
|
6 |
+
Stable tag: 2.11.3
|
7 |
License: GPLv2 or later
|
8 |
|
9 |
View debugging and performance information on database queries, hooks, conditionals, HTTP requests, redirects and more.
|