Merge branch 'QA_4_4'

Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
This commit is contained in:
Madhura Jayaratne 2015-05-06 12:05:17 +05:30
commit ef13319f40
2 changed files with 6 additions and 3 deletions

View File

@ -31,6 +31,7 @@ phpMyAdmin - ChangeLog
+ rfe #1146 Show original size of truncated columns
4.4.6.0 (not yet released)
- bug #4890 webkitStorageInfo and webkitIndexedDB is deprecated
4.4.5.0 (2015-05-05)
- bug Table overhead stats: missing space before the unit

View File

@ -257,9 +257,11 @@ var ErrorReport = {
*/
wrap_global_functions: function () {
for (var key in window) {
var global = window[key];
if (typeof(global) === "function" && key.indexOf("PMA_") === 0) {
window[key] = ErrorReport.wrap_function(global);
if (key.indexOf("PMA_") === 0) {
var global = window[key];
if (typeof(global) === "function") {
window[key] = ErrorReport.wrap_function(global);
}
}
}
},