﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
4448	Sessions Internet explorer	joey		"I have an admin site that sores a session in a folder using the following:
	ini_set(""session.save_handler"", ""files""); 
	$_SESSION['username'] = $username;		
         header(""Location: main.php"");

Then I check the session with this:

function validSession($username) {
	if (!isset($_SESSION[""username""])) {
		$_SESSION[""status""] = ""You must login"";
		header(""Location: logout.php"");
		exit;
	}
}

Everything works fine I can add text to the WYSIWYG and use every tool in the editor but as soon as I press the image button it destroys the session. This only happens in IE not firefox or Chrome"	Bug	closed	Normal		General	3.0	duplicate		
