Changeset 18811 for plugins/dsExtDirectPlugin
- Timestamp:
- 06/01/09 19:49:04 (4 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/dsExtDirectPlugin/trunk/lib/dsExtDirectErrorHandler.class.php
r18437 r18811 21 21 { 22 22 public static function handleError($errno, $errstr, $errfile, $errline, $errcontext = null) { 23 // If errors are suppressed or error reporting is not set do not throw error 24 if(($errno & error_reporting()) === 0) 25 { 26 return false; 27 } 28 23 29 throw new ErrorException($errstr, 0, $errno, $errfile, $errline); 24 30 die();