Good Day,
I have recently upgraded my PHP install from 4.4.0 to 5.1.1. I have a php application that works fine on 4.4.0 but wont run on 5.1.1. Im assuming this must be due to differences in 4.4.0 and 5.1.1 (duh).
I get the following notice:
Notice: Object of class MapSession_RW could not be converted to int in D:\ms4w\apps\chameleon\htdocs\chameleon.php on line 611
the line in question is written as follows:
function CWCInitializeMap()
{
//session map init
// create a new map session object if not created
if ($this->moMapSession == "") //***line611****
$this->moMapSession = new MapSession_R;
Any thoughts on what needs to be changed to make this work?