Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate 2015-05-06 08:35:18 +02:00
commit 003eabc03d
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);
}
}
}
},