Ignore:
Timestamp:
Jan 27, 2014, 10:01:33 PM (10 years ago)
Author:
chronos
Message:
  • Added: Config parameter Description which is used for general web description included in meta section of HTML page and usable by modules.
  • Fixed: Error in RSS channels if no items loaded.
  • Modified: Log real last URI instead on script name in online users list in database.
  • Fixed: Serialization error in Database class if exception was raised.
  • Modified: Items in RSS channel of forum links to exact forum topics.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Log/Log.php

    r636 r765  
    2222        $this->System->RegisterPage('log.php', 'PageLog');
    2323        $this->System->ModuleManager->Modules['Error']->OnError[] = array($this, 'DoAddItem');
    24         $this->System->ModuleManager->Modules['News']->RegisterRSS(array('Title' => 'Záznamy',
     24        $this->System->ModuleManager->Modules['News']->RegisterRSS(array('Title' => T('Logs'),
    2525          'Channel' => 'log', 'Callback' => array('PageLog', 'ShowRSS'), 'Permission' => LICENCE_ADMIN));
    2626  } 
     
    103103    $Output .= GenerateRSS(array
    104104    (
    105       'Title' => $this->System->Config['Web']['Title'],
     105      'Title' => $this->System->Config['Web']['Title'].' - '.T('Logs'),
    106106      'Link' => 'http://'.$this->System->Config['Web']['Host'].$this->System->Link('/'),
    107       'Description' => $this->System->Config['Web']['Title'],
     107      'Description' => $this->System->Config['Web']['Description'],
    108108      'WebmasterEmail' => $this->System->Config['Web']['AdminEmail'],
    109109      'Items' => $Items,
Note: See TracChangeset for help on using the changeset viewer.