From b8ec647fc5ef355241be0be44efd0c95aee2993e Mon Sep 17 00:00:00 2001 From: Stig Bakken Date: Sun, 2 Jun 2002 23:59:41 +0000 Subject: [PATCH] * fix bug that was re-introduced during merge --- pear/PEAR/Command.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pear/PEAR/Command.php b/pear/PEAR/Command.php index 8eea62468a..fd717533fd 100644 --- a/pear/PEAR/Command.php +++ b/pear/PEAR/Command.php @@ -146,8 +146,7 @@ class PEAR_Command function &setFrontendClass($uiclass) { if (is_object($GLOBALS['_PEAR_Command_uiobject']) && - strtolower($GLOBALS['_PEAR_Command_uiclass']) == - get_class($GLOBALS['_PEAR_Command_uiobject'])) { + strtolower($uiclass) == get_class($GLOBALS['_PEAR_Command_uiobject'])) { return; } $file = str_replace('_', '/', $uiclass) . '.php'; @@ -320,4 +319,4 @@ class PEAR_Command } } -?> \ No newline at end of file +?> -- 2.50.1