芝麻web文件管理V1.00
编辑当前文件:/home/p/r/i/prismawe/www/resupres/javascript/ckfinder/core/connector/php/php4/ErrorHandler/Base.php
_catchAllErrors = $newValue ? true : false; } /** * Set which errors should be ignored * * @param array $newArray */ function setSkipErrorsArray($newArray) { if (is_array($newArray)) { $this->_skipErrorsArray = $newArray; } } /** * Throw connector error, return true if error has been thrown, false if error has been catched * * @param int $number * @param string $text * @access public */ function throwError($number, $text = false) { if ($this->_catchAllErrors || in_array($number, $this->_skipErrorsArray)) { return false; } $_xml =& CKFinder_Connector_Core_Factory::getInstance("Core_Xml"); $_xml->raiseError($number,$text); exit; } }