From: Michael M Slusarz Date: Sat, 15 Aug 2009 19:42:13 +0000 (-0600) Subject: Remove 'background_inbox' config (always load in background) X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=f109693d01c3973f1227ed4e0c09ecfd44a451dc;p=horde.git Remove 'background_inbox' config (always load in background) --- diff --git a/imp/config/conf.xml b/imp/config/conf.xml index 16e446b05..1b2894ee6 100644 --- a/imp/config/conf.xml +++ b/imp/config/conf.xml @@ -296,9 +296,6 @@ 12 - true diff --git a/imp/js/DimpBase.js b/imp/js/DimpBase.js index 292fcab80..dd771b273 100644 --- a/imp/js/DimpBase.js +++ b/imp/js/DimpBase.js @@ -2464,9 +2464,7 @@ var DimpBase = { this.go('folder:INBOX'); } else { this.go('portal'); - if (DIMP.conf.background_inbox) { - this.loadMailbox('INBOX', { background: true }); - } + this.loadMailbox('INBOX', { background: true }); } } diff --git a/imp/templates/javascript_defs_dimp.php b/imp/templates/javascript_defs_dimp.php index 24d4fa046..563d28f02 100644 --- a/imp/templates/javascript_defs_dimp.php +++ b/imp/templates/javascript_defs_dimp.php @@ -55,7 +55,6 @@ $code['conf'] = array_filter(array( // Other variables 'app_urls' => $app_urls, - 'background_inbox' => intval(!empty($GLOBALS['conf']['dimp']['viewport']['background_inbox'])), 'buffer_pages' => intval($GLOBALS['conf']['dimp']['viewport']['buffer_pages']), 'debug' => intval(!empty($GLOBALS['conf']['dimp']['js']['debug'])), 'disable_compose' => !IMP::canCompose(),