[horde] Internet Explorer 9 Issues

Patrick Boutilier boutilpj at ednet.ns.ca
Thu May 19 18:58:12 UTC 2011


On 05/17/2011 08:16 PM, Webmaster Extraordinaire wrote:
> Hi all,
>
> We're having a couple of problems with Horde in Internet Explorer 9.
>
> The first problem is that you cannot expand the Mail folder to show the sub folders such as "New Message", "Search" and and personal folders a users has created.  This works fine in IE8 and in IE9 it appears to work correctly on other folders meaning that the Mail folder is the only one with a problem.
>
> The second problem involves auto-complete on an email address.  When you type in an address, the auto-complete pops up and if you hit the Return key it fires the email with a warning about no subject having been entered.  In IE8 the return key simply finishes the auto-complete and doesn't fire the message.
>
> We are running Horde 3.3.4 and Imp 4.3.4 if that helps.  My best guess is something happened with IE9 and JavaScript so maybe we just need to
> upgrade Imp or some JavaScript?
>
> All help welcomed.


Try this patch or modify horde/lib/Horde/Browser.php directly. Fixes the 
first problem for sure, not sure about the second one.




--- horde/lib/Horde/Browser.php.dist    2007-10-02 21:47:44.000000000 -0300
+++ horde/lib/Horde/Browser.php 2010-11-13 22:21:29.000000000 -0400
@@ -378,6 +378,30 @@
                  }

                  switch ($this->_majorVersion) {
+                case 9:
+                    $this->setFeature('javascript', 1.4);
+                    $this->setFeature('dom');
+                    $this->setFeature('iframes');
+                    $this->setFeature('utf');
+                    $this->setFeature('rte');
+                    $this->setFeature('homepage');
+                    $this->setFeature('accesskey');
+                    $this->setFeature('optgroup');
+                    $this->setFeature('xmlhttpreq');
+                    break;
+
+                case 8:
+                    $this->setFeature('javascript', 1.4);
+                    $this->setFeature('dom');
+                    $this->setFeature('iframes');
+                    $this->setFeature('utf');
+                    $this->setFeature('rte');
+                    $this->setFeature('homepage');
+                    $this->setFeature('accesskey');
+                    $this->setFeature('optgroup');
+                    $this->setFeature('xmlhttpreq');
+                    break;
+
                  case 7:
                      $this->setFeature('javascript', 1.4);
                      $this->setFeature('dom');
-------------- next part --------------
A non-text attachment was scrubbed...
Name: boutilpj.vcf
Type: text/x-vcard
Size: 286 bytes
Desc: not available
URL: <http://lists.horde.org/archives/horde/attachments/20110519/ef082228/attachment.vcf>


More information about the horde mailing list