force the config to be an array if empty

...or we get a bunch of "invalid argument" to the foreach statement.
This commit is contained in:
Mikael Nordfeldth 2014-11-27 23:39:25 +01:00
parent 8a72b24ea2
commit a9423265fd

View File

@ -75,7 +75,7 @@ class QvitterPlugin extends Plugin {
· · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · */ · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · · */
// config.php settings override the settings in this file // config.php settings override the settings in this file
$configphpsettings = common_config('site','qvitter'); $configphpsettings = common_config('site','qvitter') ?: array();
foreach($configphpsettings as $configphpsetting=>$value) { foreach($configphpsettings as $configphpsetting=>$value) {
$settings[$configphpsetting] = $value; $settings[$configphpsetting] = $value;
} }