Skip to content

Commit f25a6b7

Browse files
committed
$pkg['Requirements PHP settings'] needs to be a array not a string
1 parent cfaba3f commit f25a6b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interface/lib/classes/aps_guicontroller.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -846,7 +846,7 @@ public function getPackageDetails($id)
846846
$pkg['Requirements PHP extensions'] = trim($php_ext);
847847

848848
// PHP bool options
849-
$pkg['Requirements PHP settings'] = '';
849+
$pkg['Requirements PHP settings'] = array();
850850
$php_bool_options = array('allow-url-fopen', 'file-uploads', 'magic-quotes-gpc',
851851
'register-globals', 'safe-mode', 'short-open-tag');
852852
foreach($php_bool_options as $option)

0 commit comments

Comments
 (0)