Changeset 9304

Show
Ignore:
Timestamp:
08/21/08 20:43:43 (5 months ago)
Author:
afz
Message:

set site author meta tag with owner name

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/0.8/jaws/html/include/Jaws/Layout.php

    r9161 r9304  
    223223        $this->_Template->SetVariable('.browser', $brow); 
    224224        $this->_Template->SetVariable('site-url', empty($site_url)? $base_url : $site_url); 
    225         $this->_Template->SetVariable('site-name', $GLOBALS['app']->Registry->Get('/config/site_name')); 
     225        $this->_Template->SetVariable('site-name',        $GLOBALS['app']->Registry->Get('/config/site_name')); 
    226226        $this->_Template->SetVariable('site-description', $GLOBALS['app']->Registry->Get('/config/site_description')); 
    227         $this->_Template->SetVariable('site-copyright', $GLOBALS['app']->Registry->Get('/config/copyright')); 
     227        $this->_Template->SetVariable('site-author',      $GLOBALS['app']->Registry->Get('/config/owner_name')); 
     228        $this->_Template->SetVariable('site-copyright',   $GLOBALS['app']->Registry->Get('/config/copyright')); 
    228229         
    229230        // Deprecated since 0.8: This is for backwards compatibility 
     
    259260        $this->_Template->SetVariable('BASE_URL', $base_url); 
    260261        $this->_Template->SetVariable('admin_script', BASE_SCRIPT); 
    261         $this->_Template->SetVariable('site-name', $GLOBALS['app']->Registry->Get('/config/site_name')); 
     262        $this->_Template->SetVariable('site-name',        $GLOBALS['app']->Registry->Get('/config/site_name')); 
    262263        $this->_Template->SetVariable('site-description', $GLOBALS['app']->Registry->Get('/config/site_description')); 
    263         $this->_Template->SetVariable('site-copyright', $GLOBALS['app']->Registry->Get('/config/copyright')); 
     264        $this->_Template->SetVariable('site-author',      $GLOBALS['app']->Registry->Get('/config/owner_name')); 
     265        $this->_Template->SetVariable('site-copyright',   $GLOBALS['app']->Registry->Get('/config/copyright')); 
    264266        $this->_Template->SetVariable('control-panel', _t('CONTROLPANEL_NAME')); 
    265267        $this->_Template->SetVariable('loading-message', _t('CONTROLPANEL_LOADING'));