diff options
author | xue <> | 2005-11-26 02:07:41 +0000 |
---|---|---|
committer | xue <> | 2005-11-26 02:07:41 +0000 |
commit | 0be2589471d01ea8471a7bdb297fea98783db12f (patch) | |
tree | 7b1ec50c3de3ef21ce238f91c666a71c08683f2c /framework/Exceptions/TException.php | |
parent | 7ee7a1ba237755ea1d0c4eef4d667e9c412de082 (diff) |
Diffstat (limited to 'framework/Exceptions/TException.php')
-rw-r--r-- | framework/Exceptions/TException.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/Exceptions/TException.php b/framework/Exceptions/TException.php index a4cd6f60..fb668458 100644 --- a/framework/Exceptions/TException.php +++ b/framework/Exceptions/TException.php @@ -159,7 +159,7 @@ class THttpException extends TException {
$args=func_get_args();
array_shift($args);
- call_user_func_array(array('parent', '__construct'), $args);
+ call_user_func_array(array('TException', '__construct'), $args);
$this->_statusCode=TPropertyValue::ensureInteger($statusCode);
}
|