Changeset 812 for trunk/includes/system.php
- Timestamp:
- May 31, 2014, 9:35:15 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.