Changeset 583 for trunk/includes/system.php
- Timestamp:
- Sep 13, 2013, 8:12:58 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/system.php
r581 r583 203 203 function PageNotFound() 204 204 { 205 return( 'Page '.implode('/', $this->PathItems).' not found.');205 return(ShowMessage('Stránka "'.implode('/', $this->PathItems).'" nenalezena.', MESSAGE_CRITICAL)); 206 206 } 207 207 … … 216 216 if($Page->RawPage == false) $Output = $this->BaseView->ShowPage($Output); 217 217 echo($Output); 218 } else echo($this-> PageNotFound());218 } else echo($this->BaseView->ShowPage($this->PageNotFound())); 219 219 } 220 220 }
Note:
See TracChangeset
for help on using the changeset viewer.