Changeset 738 for trunk/Modules/Error/Error.php
- Timestamp:
- Apr 14, 2015, 10:20:16 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Error/Error.php
r682 r738 32 32 function DoStart() 33 33 { 34 34 $this->ShowError = $this->System->Config['Web']['ShowPHPError']; 35 35 set_error_handler(array($this, 'ErrorHandler')); 36 36 set_exception_handler(array($this, 'ExceptionHandler')); … … 39 39 function Stop() 40 40 { 41 42 43 41 restore_error_handler(); 42 restore_exception_handler(); 43 parent::Stop(); 44 44 } 45 45 … … 128 128 '<meta http-equiv="Content-Type" content="text/html; charset='.$this->Encoding.'"></head><body>'."\n". 129 129 'Došlo k vnitřní chybě!<br/> O chybě byl uvědoměn správce webu a chybu brzy odstraní.<br/><br/>'); 130 echo('<pre>'.$Error.'</pre><br/>'); 130 echo('<pre>'.$Error.'</pre><br/>'); // V případě ladění chybu i zobraz 131 131 echo('</body></html>'); 132 132 } else 133 133 { 134 134 echo($Error); 135 135 } 136 136 }
Note:
See TracChangeset
for help on using the changeset viewer.