fixed config for php >=5; see php.net/array_merge

This commit is contained in:
Florian Hülsmann 2014-03-30 16:56:48 +02:00
parent 53d54eb929
commit 58d1300745
1 changed files with 1 additions and 1 deletions

View File

@ -329,7 +329,7 @@ class StatusNet
{
global $config;
$settings = SiteProfile::getSettings($name);
$config = array_merge($config, $settings);
$config = array_replace_recursive($config, $settings);
}
protected static function _sn_to_path($sn)