From b4cf8debcebd479db2d97c747a1e3fcc2f6a66f8 Mon Sep 17 00:00:00 2001 From: Martin Jansen Date: Fri, 6 Jun 2003 16:07:15 +0000 Subject: [PATCH] * Use raiseError(), like it's done in the rest of class also. # Bug: 23932 --- pear/PEAR/Command/Registry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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']); -- 2.50.1