Quote:
Originally Posted by GoodOmens
I get the following "Warning: array_merge() [function.array-merge]: Argument #1 is not an array" regarding
Code:
$_SESSION = array_merge( $_SESSION, $db->query_first(....
|
My guess without looking into it deeply is that sessions are disabled. $_SESSION is a superglobal and should be present after session_start(); is called (which mediaWiki does). If it isn't present then PHP was unable to start a session. In the absense of sessions I'm unsure how to go about bridging this.
Eventually I will write a new bridge - the code above is a bit of a kludge to get things to work - passed along in the hopes in might be useful.