Changeset 385 for trunk/Modules/Chat/Chat.php
- Timestamp:
- Jan 24, 2012, 11:40:43 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Chat/Chat.php
r378 r385 3 3 class ChatHistory extends Page 4 4 { 5 var $FullTitle = 'Výpis z historie chatu'; 6 var $ShortTitle = 'Historie chatu'; 7 5 function __construct() 6 { 7 parent::__construct(); 8 $this->FullTitle = 'Výpis z historie chatu'; 9 $this->ShortTitle = 'Historie chatu'; 10 $this->NavigationPath[] = array('Name' => $this->ShortTitle, 'URL' => 'chat'); 11 } 12 8 13 function dechexr($Num) 9 14 { … … 16 21 global $MonthNames; 17 22 18 if(!$this->System->Mod els['User']->CheckPermission('Chat', 'Display')) return('Nemáte oprávnění');23 if(!$this->System->Modules['User']->Models['User']->CheckPermission('Chat', 'Display')) return('Nemáte oprávnění'); 19 24 20 25 if(array_key_exists('date', $_GET)) $Date = $_GET['date'];
Note:
See TracChangeset
for help on using the changeset viewer.