From 95dce0734658eefa4feb6a42d277f34bd5d6307c Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 23 May 2007 06:44:38 +0000 Subject: [PATCH] "bugfix see patch #791: Syntax error in setup" --- setup/check_install.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/check_install.php b/setup/check_install.php index 2288361818..ca0b422cae 100644 --- a/setup/check_install.php +++ b/setup/check_install.php @@ -372,7 +372,7 @@ if (!isset($args['warning'])) { $args['warning'] = lang('The %1 extension is needed from: %2.',$name, - is_array($args['from'] ? implode(', ',$args['from']) : $args['from'])); + is_array($args['from']) ? implode(', ',$args['from']) : $args['from']); } echo "
".$args['warning'].'
'; }