From 047ed8c727afee3b764dc5b51bd04a8796141719 Mon Sep 17 00:00:00 2001 From: Stig Bakken Date: Wed, 29 May 2002 03:38:58 +0000 Subject: * no longer test on whether displayLine exists --- pear/PEAR/Command.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pear/PEAR/Command.php b/pear/PEAR/Command.php index a59d22f52e..8eea62468a 100644 --- a/pear/PEAR/Command.php +++ b/pear/PEAR/Command.php @@ -156,7 +156,7 @@ class PEAR_Command $obj = &new $uiclass; // quick test to see if this class implements a few of the most // important frontend methods - if (method_exists($obj, 'displayLine') && method_exists($obj, 'userConfirm')) { + if (method_exists($obj, 'userConfirm')) { $GLOBALS['_PEAR_Command_uiobject'] = &$obj; $GLOBALS['_PEAR_Command_uiclass'] = $uiclass; return $obj; -- cgit v1.2.1