Changeset 812 for trunk/includes
- Timestamp:
- May 31, 2014, 9:35:15 AM (11 years ago)
- Location:
- trunk/includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/includes/Version.php
r811 r812 6 6 // and system will need database update. 7 7 8 $Revision = 81 1; // Subversion revision8 $Revision = 812; // Subversion revision 9 9 $DatabaseRevision = 811; // Database structure revision 10 $ReleaseTime = '2014-05- 28';10 $ReleaseTime = '2014-05-31'; -
trunk/includes/system.php
r811 r812 247 247 if($Page->RawPage == false) $Output = $this->BaseView->ShowPage($Output); 248 248 } else { 249 $Output2 = ''; 249 250 if((count($this->OnPageNotFound) == 2) 250 251 and method_exists($this->OnPageNotFound[0], $this->OnPageNotFound[1])) 251 $Output = $this->BaseView->ShowPage(call_user_func_array($this->OnPageNotFound, array()));252 else253 {252 $Output2 = call_user_func_array($this->OnPageNotFound, array()); 253 if($Output2 != '') $Output .= $this->BaseView->ShowPage($Output2); 254 else { 254 255 $Output = $this->PageNotFound(); 255 256 256 $this->BaseView->Title = T('Page not found'); 257 $Output = $this->BaseView->ShowPage($Output); 257 258 } 258 259 }
Note:
See TracChangeset
for help on using the changeset viewer.