summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStig Bakken <ssb@php.net>2002-06-06 10:16:01 +0000
committerStig Bakken <ssb@php.net>2002-06-06 10:16:01 +0000
commit3c587c0aad0ce03895c649939ac050ec47be243a (patch)
tree7a963b9d86d93c6153427531a6ab1ad8f7b9cd12
parentaa7d447d25578f1b67d09d19ee20dec3502ceb46 (diff)
downloadphp-git-3c587c0aad0ce03895c649939ac050ec47be243a.tar.gz
* make displayFatalError work again
-rw-r--r--pear/PEAR/Frontend/CLI.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/pear/PEAR/Frontend/CLI.php b/pear/PEAR/Frontend/CLI.php
index 93a0bd949c..0c352e45ae 100644
--- a/pear/PEAR/Frontend/CLI.php
+++ b/pear/PEAR/Frontend/CLI.php
@@ -102,7 +102,7 @@ class PEAR_Frontend_CLI extends PEAR
function displayFatalError($eobj)
{
- $this->_displayError($eobj);
+ $this->displayError($eobj);
exit(1);
}