Changeset 153 for www/error.php
- Timestamp:
- Feb 16, 2009, 6:16:00 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
www/error.php
r47 r153 6 6 //error_reporting(0); // Vypni interní obsluhu chyb 7 7 8 function obsluha_chyb($errno, $errmsg, $filename, $linenum, $vars)8 function CustomErrorHandler($errno, $errmsg, $filename, $linenum, $vars) 9 9 { 10 10 global $Config; … … 57 57 '<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2"></head><body>'."\n". 58 58 'Došlo k vnitřní chybě!<br> O chybě byl uvědoměn správce webu a chybu brzy odstraní.<br><br>'); 59 if($Config['Web']['ShowError'] == 1) echo('<pre>'.$err.'</pre><br>'); // V případě ladění chybu i zobraz59 if($Config['Web']['ShowError'] == true) echo('<pre>'.$err.'</pre><br>'); // V případě ladění chybu i zobraz 60 60 echo('</body></html>'); 61 61 if((E_ERROR | E_PARSE) & $errno) die(); … … 63 63 } 64 64 65 set_error_handler(' obsluha_chyb'); // Aktivuj novou obsluhu chyb65 set_error_handler('CustomErrorHandler'); // Aktivuj novou obsluhu chyb 66 66 67 67 ?>
Note:
See TracChangeset
for help on using the changeset viewer.