Changeset 765 for trunk/Modules/Log/Log.php
- Timestamp:
- Jan 27, 2014, 10:01:33 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Log/Log.php
r636 r765 22 22 $this->System->RegisterPage('log.php', 'PageLog'); 23 23 $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'), 25 25 'Channel' => 'log', 'Callback' => array('PageLog', 'ShowRSS'), 'Permission' => LICENCE_ADMIN)); 26 26 } … … 103 103 $Output .= GenerateRSS(array 104 104 ( 105 'Title' => $this->System->Config['Web']['Title'] ,105 'Title' => $this->System->Config['Web']['Title'].' - '.T('Logs'), 106 106 'Link' => 'http://'.$this->System->Config['Web']['Host'].$this->System->Link('/'), 107 'Description' => $this->System->Config['Web'][' Title'],107 'Description' => $this->System->Config['Web']['Description'], 108 108 'WebmasterEmail' => $this->System->Config['Web']['AdminEmail'], 109 109 'Items' => $Items,
Note:
See TracChangeset
for help on using the changeset viewer.