diff options
author | xue <> | 2005-11-16 22:32:52 +0000 |
---|---|---|
committer | xue <> | 2005-11-16 22:32:52 +0000 |
commit | 6c1b05deafd9940da5d473800032558df90b118e (patch) | |
tree | 3435de08a595fab3ca71ed41f3a88cc9ab6e2995 /framework/Exceptions | |
parent | 65acec4f65ddefcb3e9f9762d958be0539f3f71a (diff) |
Key modules are now using registered to application rather than using reserved module names.
Diffstat (limited to 'framework/Exceptions')
-rw-r--r-- | framework/Exceptions/TErrorHandler.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/framework/Exceptions/TErrorHandler.php b/framework/Exceptions/TErrorHandler.php index 458d3169..f88396ce 100644 --- a/framework/Exceptions/TErrorHandler.php +++ b/framework/Exceptions/TErrorHandler.php @@ -21,6 +21,7 @@ class TErrorHandler extends TComponent implements IErrorHandler {
$application->attachEventHandler('Error',array($this,'handle'));
$this->_initialized=true;
+ $application->setErrorHandler($this);
}
/**
|