fixed bug where IE wasn't send the HOOKSESSION cross domain/port

git-svn-id: https://beef.googlecode.com/svn/trunk@1179 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
This commit is contained in:
wade@bindshell.net
2011-08-11 01:52:13 +00:00
parent 22941a51b4
commit 324449eb0f

View File

@@ -40,7 +40,7 @@ beef.session = {
}
// if the browser is not known create a hook session id and set it
if (typeof id == 'undefined') {
if ((typeof id == 'undefined') || (id == null)) {
id = this.gen_hook_session_id();
this.set_hook_session_id(id);
}