From 383052c51690fe7b3060a19b68e9dd1599051ebb Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Wed, 16 Sep 2015 13:32:15 +0000 Subject: [PATCH] Fix broken sidebox app header refresh caused by commit 53643 --- phpgwapi/js/framework/fw_base.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/js/framework/fw_base.js b/phpgwapi/js/framework/fw_base.js index bb43ea4363..b45691bd26 100644 --- a/phpgwapi/js/framework/fw_base.js +++ b/phpgwapi/js/framework/fw_base.js @@ -176,7 +176,7 @@ var fw_base = Class.extend({ !(this.applications[_app.appName].app_refresh) && _app.browser.iframe == null && _url == _app.browser.currentLocation // links with load may needs to be reloaded e.g. admin applications global cats - && (!_app.browser.currentLocation.match(/&load=[^&]+/g) && _app == 'admin')) + && !(_app.browser.currentLocation.match(/&load=[^&]+/g) && _app == 'admin')) { // Just do an egw_refresh to avoid a full reload egw_refresh('',_app.appName);