diff options
author | Martin Jansen <mj@php.net> | 2003-06-06 16:07:15 +0000 |
---|---|---|
committer | Martin Jansen <mj@php.net> | 2003-06-06 16:07:15 +0000 |
commit | b4cf8debcebd479db2d97c747a1e3fcc2f6a66f8 (patch) | |
tree | cea2eebaadf1903bc22b73d7ea87e52909bfabfd | |
parent | 3d5ecc112b574bd82f677cf15d044098770d2c52 (diff) | |
download | php-git-b4cf8debcebd479db2d97c747a1e3fcc2f6a66f8.tar.gz |
* Use raiseError(), like it's done in the rest of class also.
# Bug: 23932
-rw-r--r-- | pear/PEAR/Command/Registry.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pear/PEAR/Command/Registry.php b/pear/PEAR/Command/Registry.php index 01029df1ac..f93f7240f5 100644 --- a/pear/PEAR/Command/Registry.php +++ b/pear/PEAR/Command/Registry.php @@ -227,7 +227,7 @@ installed package.' return $info; } if (empty($info)) { - $this->ui->displayError("Nothing found for `$params[0]'"); + $this->raiseError("Nothing found for `$params[0]'"); return; } unset($info['filelist']); |