Author |
|
PatrikIden Newbie
Joined: 28 May 2012 Location: Sweden
Online Status: Offline Posts: 9
|
Posted: 11 June 2012 at 8:47am | IP Logged
|
|
|
When trying to login a new window is opend and i get this message:
.CRLF
The rest of the page is blank. I'm running the webmail in a inline frame.
I'm using the light version of Webmail.
And i'm using IE9 - 64 Bit.
I made thees changes:
in js/common/common-helpers.js i changed this:
this.IE = (this.Name == 'Microsoft Internet Explorer');
to this:
this.IE = (this.Name == 'Microsoft Internet Explorer' && this.Version < 9);
this.IE9 = (this.Name == 'Microsoft Internet Explorer' && this.Version >= 9);
And in js/commons/functions.js i changed this line:
if (Browser.IE) {
To this:
if (Browser.IE && Browser.Version < 9) {
But still i get .CRLF
Is was somthing wrong with the index.php file. I copyed a backedup index.php file and now it works.
|
Back to Top |
|
|