tbrehm
2010-01-31 286d1bf1b746b49e43fd674bbc47afd25adfbedb
interface/lib/app.inc.php
@@ -175,7 +175,7 @@
         @include_once($filename);
         if(is_array($wb)) {
            if(is_array($this->_wb)) {
               $this->_wb = array_merge($wb,$this->_wb);
               $this->_wb = array_merge($this->_wb,$wb);
            } else {
               $this->_wb = $wb;
            }
@@ -186,7 +186,11 @@
    public function tpl_defaults()
    {   
      $this->tpl->setVar('app_title', $this->_conf['app_title']);
      $this->tpl->setVar('app_version', $this->_conf['app_version']);
      if(isset($_SESSION['s']['user'])) {
         $this->tpl->setVar('app_version', $this->_conf['app_version']);
      } else {
         $this->tpl->setVar('app_version', '');
      }
      $this->tpl->setVar('app_link', $this->_conf['app_link']);
      if(isset($this->_conf['app_logo']) && $this->_conf['app_logo'] != '' && @is_file($this->_conf['app_logo'])){
         $this->tpl->setVar('app_logo', '<img src="'.$this->_conf['app_logo'].'">');
@@ -218,4 +222,4 @@
//* possible future =  new app($conf);
$app = new app();
?>
?>