Till Brehm
2016-06-14 855cf2aaeb5e4cd43f4f0e6f79a66e0ab6fbebcf
interface/lib/app.inc.php
@@ -71,6 +71,13 @@
         $this->uses('session');
         $sess_timeout = $this->conf('interface', 'session_timeout');
         $cookie_domain = (isset($_SERVER['SERVER_NAME']) ? $_SERVER['SERVER_NAME'] : $_SERVER['HTTP_HOST']);
         // Workaround for Nginx servers
         if($cookie_domain == '_') {
            $tmp = explode(':',$_SERVER["HTTP_HOST"]);
            $cookie_domain = $tmp[0];
            unset($tmp);
         }
         $cookie_secure = ($_SERVER["HTTPS"] == 'on')?true:false;
         if($sess_timeout) {
            /* check if user wants to stay logged in */
@@ -240,7 +247,7 @@
         }
         $this->_language_inc = 1;
      }
      if(!empty($this->_wb[$text])) {
      if(isset($this->_wb[$text]) && $this->wb[$text] !== '') {
         $text = $this->_wb[$text];
      } else {
         if($this->_conf['debug_language']) {