Changeset 583 for trunk/Common/System.php
- Timestamp:
- Oct 19, 2013, 2:17:09 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Common/System.php
r582 r583 71 71 $Page = new $ClassName($this); 72 72 $Page->GetOutput(); 73 } else echo($this->PageNotFound()); 73 } else { 74 $Page = new PageMissing($this); 75 $Page->GetOutput(); 76 } 74 77 } 75 78 … … 149 152 } 150 153 } 154 155 class PageMissing extends Page 156 { 157 var $FullTitle = 'Stránka nenalezena'; 158 var $ShortTitle = 'Stránka nenalezena'; 159 160 function __construct($System) 161 { 162 parent::__construct($System); 163 $this->ParentClass = 'PagePortal'; 164 } 165 166 function Show() 167 { 168 return('<h3 align="center">Požadovavá stránka neexistuje.</h3>'); 169 } 170 }
Note:
See TracChangeset
for help on using the changeset viewer.