summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Jansen <mj@php.net>2003-06-06 16:07:15 +0000
committerMartin Jansen <mj@php.net>2003-06-06 16:07:15 +0000
commitb4cf8debcebd479db2d97c747a1e3fcc2f6a66f8 (patch)
treecea2eebaadf1903bc22b73d7ea87e52909bfabfd
parent3d5ecc112b574bd82f677cf15d044098770d2c52 (diff)
downloadphp-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.php2
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']);