forked from GNUsocial/gnu-social
fixed config for php >=5; see php.net/array_merge
This commit is contained in:
parent
53d54eb929
commit
58d1300745
@ -329,7 +329,7 @@ class StatusNet
|
|||||||
{
|
{
|
||||||
global $config;
|
global $config;
|
||||||
$settings = SiteProfile::getSettings($name);
|
$settings = SiteProfile::getSettings($name);
|
||||||
$config = array_merge($config, $settings);
|
$config = array_replace_recursive($config, $settings);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected static function _sn_to_path($sn)
|
protected static function _sn_to_path($sn)
|
||||||
|
Loading…
Reference in New Issue
Block a user