Use array_merge instead of array_replace (same effect, and array_merge works with PHP versions < 5.3)

fixes http://status.net/open-source/issues/3393
This commit is contained in:
Zach Copley
2011-09-22 12:49:04 -07:00
parent f65fa42e15
commit c2da445699
2 changed files with 5 additions and 5 deletions

View File

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