Author |
|
chcornwell Newbie
Joined: 02 October 2013 Location: United States
Online Status: Offline Posts: 2
|
Posted: 02 October 2013 at 9:00am | IP Logged
|
|
|
These problems were encountered in version 6.5, they are still present in 6.6
1) Symptom: after entering user name and password on login page,
nothing happens when the Enter button is clicked.
Fix:
- In webmail.php and index.php change DOCTYPE from Transitional to Strict
- In webmail.php place the </body> tag AFTER the last </script/> tag[/LI
2) Symptom: Message is not sent if Auto Save message is displayed before clicking the Send button.
Fix: Apply the following patch to js/common/popups.js to eliminate
an uncaught exception if the element has no filters property.
Code:
459c459
< var oAlpha = elem.hasOwnProperty('filters') && (elem.filters['DXImageTransform.Microsoft.alpha'] || elem.filters.alpha);
---
> var oAlpha = elem.filters['DXImageTransform.Microsoft.alpha'] || elem.filters.alpha;
|
|
|
///
Related post
|
Back to Top |
|
|