By eric | January 24, 2008 - 4:41 pm - Posted in 技术::Tech
when you twist wpmu, sometime plugin does not work well especially aray_merge().
When the plugin call array_merge($options, $default), you may get argument #1 is not array error.
The solution is very simple, just change the code to array_merge((array)$options, $default)


