From: Stig Bakken Date: Sun, 2 Jun 2002 23:59:41 +0000 (+0000) Subject: * fix bug that was re-introduced during merge X-Git-Tag: RELEASE_0_90~52 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b8ec647fc5ef355241be0be44efd0c95aee2993e;p=php * fix bug that was re-introduced during merge --- 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 +?>