Changeset 583
- Timestamp:
- Sep 13, 2013, 8:12:58 PM (11 years ago)
- Location:
- trunk/includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/Version.php
r582 r583 1 1 <?php 2 2 3 $Revision = 58 2; // Subversion revision3 $Revision = 583; // Subversion revision 4 4 $DatabaseRevision = 574; // Database structure revision 5 5 $ReleaseTime = '2013-09-12'; -
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.