<?xml version="1.0" encoding="UTF-8"?> 
<?xml-stylesheet href="https://dev.horde.org/themes/horde//default/feed-rss.xsl" type="text/xsl"?> 
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> 
 <channel> 
  <title>Forward / Reply / New message results in popup &quot;Loading...&quot;</title> 
  <pubDate>Fri, 10 Apr 2026 11:02:25 +0000</pubDate> 
  <link>https://bugs.horde.org/ticket/14267</link> 
  <atom:link rel="self" type="application/rss+xml" title="Forward / Reply / New message results in popup &quot;Loading...&quot;" href="https://bugs.horde.org/ticket/14267/rss" /> 
  <description>Forward / Reply / New message results in popup &quot;Loading...&quot;</description> 
 
   
   
  <item> 
   <title>Any attempt to Forward, Reply, or create a New Message using</title> 
   <description>Any attempt to Forward, Reply, or create a New Message using IE11 (or Edge) results in the popup window hanging with the &quot;Loading...&quot; message indefinitely.

Server Environment:
CentOS 6 - Apache - MySQL - PHP 5.3.3
Horde Groupware Webmail Edition 5.2.12 (installed via PEAR)
Mail (imp) 6.2.12

Browser: IE11 (also Edge), have not tested on IE8 - IE10

Note: Does NOT occur on Firefox or Chrome and is not limited to any single computer installation.  We have tested on Windows 8.1 Pro, Windows 7, and Windows 10 machines.

Using the Debugger in IE shows multiple errors occuring through the prototype.js file.  The last one being fatal and stopping the script.  I will list the errors in the order that they occur:

Line 2092 InvalidCharacter
Line 5032 SyntaxError
Line 5045 SyntaxError
Line 969 Unable to get property &#039;observe&#039; of undefined or null reference

The Call Stack at the point of the final error looks like this:

Unable to get property &#039;observe&#039; of undefined or null reference

[Main Thread]
Anonymous function [Line: 969, Col: 7], prototype.js
Anonymous function [Line: 1270, Col: 9], prototype.js
invoke [Line: 968, Col: 5], prototype.js
DimpCompose.onDomLoad [Line: 1411, Col: 13], compose-dimp.js
Anonymous function [Line: 7206, Col: 7], prototype.js
fireEvent_DOM [Line: 7066, Col: 5], prototype.js
fire [Line: 7055, Col: 5], prototype.js
_methodized [Line: 456, Col: 7], prototype.js
fireContentLoadedEvent [Line: 7241, Col: 5], prototype.js
[Async Call]
Anonymous function [Line: 7269, Col: 5], prototype.js
Global code [Line: 7231, Col: 2], prototype.js

We understand that Firefox / FireBug are preferred for this type of troubleshooting.  However, these errors simply do not surface when using either Firefox or Chrome.

We have attached a screen snippet and will be happy to provide any further information we can in order to track down this problem.

Thanks,

Jon</description> 
   <pubDate>Wed, 24 Feb 2016 15:23:44 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/14267#t90053</link> 
  </item> 
   
  <item> 
   <title>Cannot reproduce. I can reply/forward/redirect to any email </title> 
   <description>Cannot reproduce. I can reply/forward/redirect to any email from both IE11 (11.103.10586.0) and Edge on Windows 10.

Are you using JS caching? If so, try it with caching turned off and then with it on, but after clearing the cache files. </description> 
   <pubDate>Fri, 26 Feb 2016 16:13:38 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/14267#t90062</link> 
  </item> 
   
  <item> 
   <title>&gt; Cannot reproduce. I can reply/forward/redirect to any emai</title> 
   <description>&gt; Cannot reproduce. I can reply/forward/redirect to any email from both 
&gt; IE11 (11.103.10586.0) and Edge on Windows 10.
&gt;
&gt; Are you using JS caching? If so, try it with caching turned off and 
&gt; then with it on, but after clearing the cache files.

Alright,

IE is a slightly different version, but we do not really have control over the version that we use as it is based on administrative updates.  The version on this machine is currently 11.0.10240.16683.

I cleared the cache from IE and tried again without any change in results.

I then logged out, cleared the IE cache, restarted the browser, and logged into &quot;basic&quot; mode.  Still gives a number of different errors in the console, but no fatal ones.  I was able to send a test email in Basic mode.

I then repeated those steps for Dynamic mode.  After verifying that I had no cached .js files and restarting the browser, I logged in the same user as Dynamic mode.  I received the same results as the original ticket.

At any rate, I see no evidence of cached .js files on the client side.

Is &quot;JS caching&quot; something that is configured by default in Horde or IMP?  If so, how is that default changed?  Again, at any rate, I have not been able to find any evidence of cached files in the Horde installation or the HTTP server, so this is probably a &#039;moot&#039; point

More directly, looking at the call stack and the trace, the difference in handling between IE and other browsers occurs at lines 1408-1414 in the ./imp/js/compose-dimp.js file.  It looks like that call is directly related to the resulting error.  It is interesting that it mentions &quot;bubble&quot; in the comment.

A window object is being passed into prototype.js but the window does not have an &#039;observe&#039; method.  This would normally be a &#039;document&#039; object which does have an &#039;observe&#039; method.

I temporarily edited the ./imp/js/compose-dimp.js file to allow IE to be treated the same an any other browser, then cleared the browser cache, and logged in again using Dynamic mode.  I was then able to begin a new message and successfully send.

1408  /* Attach event handlers. */
1409  if (Prototype.Browser.IE) {
1410      // IE doesn&#039;t bubble change events.
1411      // $(&#039;identity&#039;, &#039;upload&#039;).invoke(&#039;observe&#039;, &#039;change&#039;, this.changeHandler.bindAsEventListener(this));
 added-&gt;  document.observe(&#039;change&#039;, this.changeHandler.bindAsEventListener(this));
1412      } else {
1413      document.observe(&#039;change&#039;, this.changeHandler.bindAsEventListener(this));
1414      }

Apparently, on line 1411 the expression &quot;(&#039;identity&#039;, &#039;upload&#039;)&quot; resolves to the window, and not the document (at least in IE11).

I cannot find any specific revision information inside the compose-dimp.js file, however, it&#039;s timestamp matches all of the other .js files for IMP from the date of installation which was Feb 5. (at least it did until I edited the file to perform the test)

The prototype.js file shows: Prototype JavaScript framework, version 1.7.2, and a file date of Feb 23 (which was the last time that I did a pear update).  However, this problem existed previously, which is why I did the pear update.  There is a newer (1.7.3) prototype.js available from the upstream.  I would be happy to test with that.

However, it looks like the root of the problem is the &#039;if&#039; decision made in the compose-dimp.js file at line 1409.

Likely causes may be: 
 - differing user-agent strings / features reported from various versions of IE
 - differing DOM structures in various versions of IE
 - JScript interpretation of Prototype JS at various versions

The browser on this machine is currently reporting:
&quot;Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko&quot;

Also, I would suggest that if you cannot reproduce this problem, then at line 1409, your browser is not being detected as IE by the prototype.js code.  That would explain the difference in results.  If for any reason your browser is detected as &quot;Mozilla&quot;, then your browser skips around the code that crashes other IE browsers (but perhaps not all).  As it is, in our local case, the browsers are definitely executing line 1411 and not line 1413 despite the newer user agent string.

For what it&#039;s worth, I think this IE detection issue is still open on GitHub at the time of this writing...
Ref: https://github.com/sstephenson/prototype/issues/120

So, what does :: if (Prototype.Browser.IE) :: really mean?  I am not conviced that it means anything related to whether a browser supports &quot;bubble&quot; or &quot;capture&quot; for events, at least not in today&#039;s world.  Should that handling call really be based on that specific boolean flag in Prototype JS?

I believe that this warrants a closer look into how the calls are made from Horde / IMP code into supporting libraries, especially when they are done differently based on a decision about which User Agent is in use.

Is there a better way to address the &#039;document.observe&#039; method with a more cross browser compatible statement, or is it just a browser detection problem?

It may be necessary to further detect versions and capabilities when IE is the User Agent in order to avoid filing IE11 into the &quot;do it differently&quot; column.

Again, very happy to help with more information, and if I was better with Prototype JS / Javascript I would even try hacking at a permanent solution.  If you are using IE11, then you could try forcing it to run line 1411 and see what happens.

Or, is that code even the same in your currently used version of compose-dimp.js?</description> 
   <pubDate>Fri, 26 Feb 2016 21:59:54 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/14267#t90066</link> 
  </item> 
   
  <item> 
   <title>
&gt; Also, I would suggest that if you cannot reproduce this </title> 
   <description>
&gt; Also, I would suggest that if you cannot reproduce this problem, then 
&gt; at line 1409, your browser is not being detected as IE by the 
&gt; prototype.js code.  

Sorry, nope. I have verfied that: console.log(Prototype.Browser.IE); returns true right before the conditional you are referring to. I.e., my browser is definitely being detected as IE.

&gt; That would explain the difference in results.  If 
&gt; for any reason your browser is detected as &quot;Mozilla&quot;, then your 
&gt; browser skips around the code that crashes other IE browsers (but 
&gt; perhaps not all).  As it is, in our local case, the browsers are 
&gt; definitely executing line 1411 and not line 1413 despite the newer 
&gt; user agent string.

Verified that line 1411 is being executed, and $(&#039;identity&#039;) and $(&#039;upload&#039;) are not resolving to the window object, but rather to the correct DOM element.
</description> 
   <pubDate>Wed, 02 Mar 2016 18:26:52 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/14267#t90080</link> 
  </item> 
   
  <item> 
   <title>Alright,

So the only thing we have proven and tested is t</title> 
   <description>Alright,

So the only thing we have proven and tested is that two (or more) slight variants of IE11 interpret line 1411 differently?  I don&#039;t see how that proves that the code is logically sound.

Why is the IMP code even checking for that difference for IE11 if line 1413 works just fine in IE 11?  If it is looking just because IE6, 7, 8, etc. had a problem, then that is no longer a logical thing to look for.  All of those browsers are obsolete.

I have given plenty of excellent feedback on this issue and performed the same test on multiple machines with the same results.

If noone chooses to fix the bug, so be it, I will edit code on the server to work for the time being.  Too many people use IE11 to ignore the problem, and it doesn&#039;t make sense to support only the version that one developer has tested with.

best of luck</description> 
   <pubDate>Wed, 02 Mar 2016 23:17:22 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/14267#t90091</link> 
  </item> 
   
  <item> 
   <title>&gt; Alright,
&gt;
&gt; So the only thing we have proven and tested</title> 
   <description>&gt; Alright,
&gt;
&gt; So the only thing we have proven and tested is that two (or more) 
&gt; slight variants of IE11 interpret line 1411 differently?  I don&#039;t see 
&gt; how that proves that the code is logically sound.

Because this is the first time this has been reported and that code has been in place for years.

&gt; Why is the IMP code even checking for that difference for IE11 if 
&gt; line 1413 works just fine in IE 11?

Well, did you actually test that the event handler that is being attached in that line actually works correctly and catches the events it is inteded to or are you just stating that after the page loaded there were no errors? This is not the same thing.The reason for that code is that events do not bubble up properly in IE. Whether they do this properly in some newer version of IE is irrelevant (and to be clear, I have not verified this one way or the other yet). Just because a newer version of IE may work correctly doesn&#039;t mean we should remove the check for older versions within the same major release cycle. We are not going to remove support for a browser that worked properly within the same major release.


&gt;  If it is looking just because 
&gt; IE6, 7, 8, etc. had a problem, then that is no longer a logical thing 
&gt; to look for.  All of those browsers are obsolete.
&gt;
&gt; I have given plenty of excellent feedback on this issue and performed 
&gt; the same test on multiple machines with the same results.
&gt;
&gt; If noone chooses to fix the bug, so be it, I will edit code on the 
&gt; server to work for the time being.  

No one is choosing not to fix anything, but rather haven&#039;t yet determined what needs fixing and the best way to fix it so as to not introduce a regression for any other browsers.

&gt;Too many people use IE11 to 
&gt; ignore the problem, and it doesn&#039;t make sense to support only the 
&gt; version that one developer has tested with.

We are not ignoring the problem, as evidenced by us  providing feedback to your reports in an effort to help you further drill down on where the actual issue is. Since we cannot reproduce this on our side we need more information. As you state, many people use IE and so far this is the one and only report of this. 

Additionally, I have also tested this on IE 11.0.9600.17351 - with the same results.
</description> 
   <pubDate>Thu, 03 Mar 2016 02:46:53 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/14267#t90092</link> 
  </item> 
   
  <item> 
   <title>&gt; Because this is the first time this has been reported and </title> 
   <description>&gt; Because this is the first time this has been reported and that code 
&gt; has been in place for years.

Interesting, not sure why you think that, here is a list,
other than this one, newest to oldest:
https://bugs.horde.org/ticket/13313
https://bugs.horde.org/ticket/13079
https://bugs.horde.org/ticket/12916
https://bugs.horde.org/ticket/10187
https://bugs.horde.org/ticket/8740

&gt; Well, did you actually test that the event handler that is being 
&gt; attached in that line actually works correctly and catches the events 
&gt; it is inteded to or are you just stating that after the page loaded 
&gt; there were no errors?

No, and I did not actually elude to the fact that there were no further
errors.  I only stated that the compose window did load and was able to
send a message by allowing the code to believe that it was serving to a
browser other than IE.

Honestly, I am not even sure what events that I should be checking for
other than the ability to avoid a fatal error.  Care to clue me in what
you are looking for here?  Hovers, email lookups, drag and drop, what?

&gt; No one is choosing not to fix anything, but rather haven&#039;t yet 
&gt; determined what needs fixing and the best way to fix it so as to not 
&gt; introduce a regression for any other browsers.

Understood.  Since we have ruled out caching and IE versions, then we
should look elsewhere.  I would suggest looking at the DOM structure as
well as the library versions from PEAR.

Can you provide a text/html of a working New Message window popup that
I can check against the window popup content on my side?

Can you provide a PEAR list of libraries w/ versions on the server that
you are using so that I can also compare against our installation?

&gt; Since we cannot reproduce this on our 
&gt; side we need more information. As you state, many people use IE and 
&gt; so far this is the one and only report of this.

See above.

&gt; Additionally, I have also tested this on IE 11.0.9600.17351 - with 
&gt; the same results.

Well that is good to know.  I have actually seen the same problem on
other different platforms since the original post and am not convinced
the problem is limited to IE at all.

It seems to me that with the number of un-resolved reports of similar
problems and the consistency of the errors in specific installations
that, the problem may actually be related to:

1. an un-documented dependency in a PEAR library, or
2. an un-tested dependency for a later version of a PEAR library

It may even be something that has developed over a period of time as
browsers have evolved to treat various DOMs differently.

I have looked at the installation logs from the server that we are
using on this installation.  I do not see any &#039;required&#039; libraries
missing and there are no complaints about versioning that I can see.

With specific regard to IE11, it looks much more like Mozilla than it
does the old IE.  Similarly with Edge, it looks much more like
WebKit than it does anything else.  Therefore, in those two cases,
the calls that are more appropriate for more modern browsers would
make more sense than the calls for say, IE7 or IE8.

Furthermore, it may actually be the DOM structure that is confusing
the browser on the client side, and there are many factors that
adjust and change that structure for the dynamic views, especially
when the dependencies on various PEAR libraries are taken into
account.

If we can identify where the base problem is introduced and find an
applicable solution, we will probably solve all of the outstanding
tickets related to this compose window popup problem.
</description> 
   <pubDate>Mon, 14 Mar 2016 19:27:36 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/14267#t90173</link> 
  </item> 
   
  <item> 
   <title>&gt;&gt; Because this is the first time this has been reported and</title> 
   <description>&gt;&gt; Because this is the first time this has been reported and that code
&gt;&gt; has been in place for years.
&gt;
&gt; Interesting, not sure why you think that, here is a list,
&gt; other than this one, newest to oldest:
&gt; https://bugs.horde.org/ticket/13313
&gt; https://bugs.horde.org/ticket/13079
&gt; https://bugs.horde.org/ticket/12916
&gt; https://bugs.horde.org/ticket/10187
&gt; https://bugs.horde.org/ticket/8740

Just because all of those tickets involve the compose window does not mean they are the same issue. Some of those bug reports are ancient, some involve only Macs (no clue how that related to IE detection), and none of them are related to the same code your bug report suggested was the issue.

&gt;&gt; Well, did you actually test that the event handler that is being
&gt;&gt; attached in that line actually works correctly and catches the events
&gt;&gt; it is intended to or are you just stating that after the page loaded
&gt;&gt; there were no errors?
&gt;
&gt; No, and I did not actually elude to the fact that there were no further
&gt; errors.  

Saying that something &quot; works just fine in IE 11?&quot; led me to believe that everything was working. If the event handlers that are being registered do not work, then things are NOT &quot;just fine&quot;.

&gt;I only stated that the compose window did load and was able to
&gt; send a message by allowing the code to believe that it was serving to a
&gt; browser other than IE.
&gt;
&gt; Honestly, I am not even sure what events that I should be checking for
&gt; other than the ability to avoid a fatal error.  Care to clue me in what
&gt; you are looking for here?  Hovers, email lookups, drag and drop, what?

My apologies. I assumed a level of familiarity with the javascript in question since you had such a thorough explanation. It&#039;s the &#039;change&#039; handler of the &#039;upload&#039; and &#039;identity&#039; node...but this is rather moot anyway, since we know that those are not registered correctly on certain versions of IE and thus we cannot remove that code as you suggest.

&gt;&gt; No one is choosing not to fix anything, but rather haven&#039;t yet
&gt;&gt; determined what needs fixing and the best way to fix it so as to not
&gt;&gt; introduce a regression for any other browsers.
&gt;
&gt; Understood.  Since we have ruled out caching and IE versions, then we
&gt; should look elsewhere.  I would suggest looking at the DOM structure as
&gt; well as the library versions from PEAR.
&gt;
&gt; Can you provide a text/html of a working New Message window popup that
&gt; I can check against the window popup content on my side?

I can do this when I&#039;m back in my office - you can use the Horde demo server to find this, as I also tested using this. demo.horde.org

&gt; Can you provide a PEAR list of libraries w/ versions on the server that
&gt; you are using so that I can also compare against our installation?

Tested on a fresh install of current stable releases as well on current Git master code, and the Horde demo server.

&gt;&gt; Since we cannot reproduce this on our
&gt;&gt; side we need more information. As you state, many people use IE and
&gt;&gt; so far this is the one and only report of this.
&gt;
&gt; See above.

Again, none of those were related to the same code you are talking about.


&gt;&gt; Additionally, I have also tested this on IE 11.0.9600.17351 - with
&gt;&gt; the same results.
&gt;
&gt; Well that is good to know.  I have actually seen the same problem on
&gt; other different platforms since the original post and am not convinced
&gt; the problem is limited to IE at all.
&gt;
&gt; It seems to me that with the number of un-resolved reports of similar
&gt; problems and the consistency of the errors in specific installations
&gt; that, the problem may actually be related to:
&gt;
&gt; 1. an un-documented dependency in a PEAR library, or
&gt; 2. an un-tested dependency for a later version of a PEAR library

Unlikely since this would lead to fatal *PHP* errors.

&gt; It may even be something that has developed over a period of time as
&gt; browsers have evolved to treat various DOMs differently.

Of course - but we can&#039;t neglect the older browsers that are still supported in the same major version.

&gt; I have looked at the installation logs from the server that we are
&gt; using on this installation.  I do not see any &#039;required&#039; libraries
&gt; missing and there are no complaints about versioning that I can see.
&gt;
&gt; With specific regard to IE11, it looks much more like Mozilla than it
&gt; does the old IE.  Similarly with Edge, it looks much more like
&gt; WebKit than it does anything else.  Therefore, in those two cases,
&gt; the calls that are more appropriate for more modern browsers would
&gt; make more sense than the calls for say, IE7 or IE8

Agreed - but as demonstrated the IE detection still detect these as IE.

&gt; Furthermore, it may actually be the DOM structure that is confusing
&gt; the browser on the client side, and there are many factors that
&gt; adjust and change that structure for the dynamic views, especially
&gt; when the dependencies on various PEAR libraries are taken into
&gt; account.
&gt;
&gt; If we can identify where the base problem is introduced and find an
&gt; applicable solution, we will probably solve all of the outstanding
&gt; tickets related to this compose window popup problem.
&gt;

Since your very first error line reads:


Line 2092 InvalidCharacter

It sounds to me like everything else afterwards is a side effect of this.</description> 
   <pubDate>Mon, 14 Mar 2016 20:33:42 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/14267#t90174</link> 
  </item> 
   
  <item> 
   <title>Demo and guest logins not working for me on demo.horde.org
</title> 
   <description>Demo and guest logins not working for me on demo.horde.org

Will wait for text/html and Pear library list for comparison...

&gt;&gt; Can you provide a text/html of a working New Message window popup that
&gt;&gt; I can check against the window popup content on my side?
&gt;
&gt; I can do this when I&#039;m back in my office - you can use the Horde demo 
&gt; server to find this, as I also tested using this. demo.horde.org
&gt;
&gt;&gt; Can you provide a PEAR list of libraries w/ versions on the server that
&gt;&gt; you are using so that I can also compare against our installation?
&gt;
&gt; Tested on a fresh install of current stable releases as well on 
&gt; current Git master code, and the Horde demo server.
&gt;
</description> 
   <pubDate>Mon, 14 Mar 2016 22:49:14 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/14267#t90175</link> 
  </item> 
   
  <item> 
   <title>&gt; Demo and guest logins not working for me on demo.horde.org</title> 
   <description>&gt; Demo and guest logins not working for me on demo.horde.org

They are working fine. You might need to clear your browser cookie.
</description> 
   <pubDate>Tue, 15 Mar 2016 13:44:07 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/14267#t90180</link> 
  </item> 
   
  <item> 
   <title>I used the demo server to generate a working text/html for a</title> 
   <description>I used the demo server to generate a working text/html for a plain text compose window.

After collecting the source DOM from the demo site and this server for the compose window, and normalizing the domains, usernames, session variables, etc. for comparison;

There is one primary difference that sticks out:  the sections that enable attachments are empty in the one from this server.

The following is missing in line 26 of the DOM:

&lt;input id=&quot;save_attachments_select&quot; name=&quot;save_attachments_select&quot; type=&quot;hidden&quot; value=&quot;0&quot; /&gt; &lt;input id=&quot;MAX_FILE_SIZE&quot; name=&quot;MAX_FILE_SIZE&quot; type=&quot;hidden&quot; value=&quot;2097152&quot; /&gt;

and, at line 100 of the DOM, what should look like:

     &lt;td class=&quot;label&quot;&gt;
      &lt;span class=&quot;iconImg attachmentImg&quot;&gt;&lt;/span&gt;:
     &lt;/td&gt;
     &lt;td&gt;
      &lt;div id=&quot;atcdrop&quot; style=&quot;display:none&quot;&gt;
       Drop file(s) here to attach.      &lt;/div&gt;
      &lt;div id=&quot;atcdiv&quot;&gt;
       &lt;span id=&quot;upload_limit&quot; style=&quot;display:none&quot;&gt;The attachment limit has been reached.&lt;/span&gt;
       &lt;span id=&quot;upload_wait&quot; style=&quot;display:none&quot;&gt;&lt;/span&gt;
       &lt;span&gt;
        &lt;label id=&quot;compose_upload_add&quot; for=&quot;upload&quot;&gt;Add Attachment&lt;/label&gt;
        &lt;input id=&quot;upload&quot; multiple name=&quot;file_upload[]&quot; type=&quot;file&quot; /&gt;       &lt;/span&gt;
        
actually looks like:

     &lt;td&gt;&lt;/td&gt;
     &lt;td&gt;
      &lt;div&gt;

Would this explain the results in the OP since the compose form does not have the same structure?

The only other differences seem to be related to language selection and the spell checker.  But those are preferences, right?
</description> 
   <pubDate>Tue, 15 Mar 2016 19:19:23 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/14267#t90189</link> 
  </item> 
   
  <item> 
   <title>Changes have been made in Git (FRAMEWORK_5_2):

commit 6d45a</title> 
   <description>Changes have been made in Git (FRAMEWORK_5_2):

commit 6d45affb6b861786924630eefc2c1b758d6d07bc
Author: Michael J Rubinsky &lt;mrubinsk@horde.org&gt;
Date:   Fri Mar 18 00:21:12 2016 -0400

    Bug: 14267 Fix opening compose window on IE when uploads are disabled.

 imp/js/compose-dimp.js |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

http://github.com/horde/horde/commit/6d45affb6b861786924630eefc2c1b758d6d07bc</description> 
   <pubDate>Fri, 18 Mar 2016 04:23:12 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/14267#t90203</link> 
  </item> 
   
  <item> 
   <title>Does this commit fix it for you?</title> 
   <description>Does this commit fix it for you?</description> 
   <pubDate>Fri, 18 Mar 2016 04:23:40 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/14267#t90204</link> 
  </item> 
   
  <item> 
   <title>Changes have been made in Git (FRAMEWORK_5_2):

commit 3f9bb</title> 
   <description>Changes have been made in Git (FRAMEWORK_5_2):

commit 3f9bb5f74e805a8b6520ba21258a5b33ff5969b1
Author: Michael J Rubinsky &lt;mrubinsk@horde.org&gt;
Date:   Fri Mar 18 07:12:51 2016 -0400

    Revert &quot;Bug: 14267 Fix opening compose window on IE when uploads are disabled.&quot;
    
    This reverts commit 6d45affb6b861786924630eefc2c1b758d6d07bc.

 imp/js/compose-dimp.js |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/3f9bb5f74e805a8b6520ba21258a5b33ff5969b1</description> 
   <pubDate>Fri, 18 Mar 2016 11:15:02 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/14267#t90205</link> 
  </item> 
   
  <item> 
   <title>Changes have been made in Git (FRAMEWORK_5_2):

commit 7361c</title> 
   <description>Changes have been made in Git (FRAMEWORK_5_2):

commit 7361c03d08e076ecc226711f50ceda2627584c56
Author: Michael J Rubinsky &lt;mrubinsk@horde.org&gt;
Date:   Fri Mar 18 07:14:21 2016 -0400

    Bug: 14267 Cleaner way of fixing opening compose window on IE when uploads are disabled.

 imp/js/compose-dimp.js |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

http://github.com/horde/horde/commit/7361c03d08e076ecc226711f50ceda2627584c56</description> 
   <pubDate>Fri, 18 Mar 2016 11:15:08 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/14267#t90206</link> 
  </item> 
   
  <item> 
   <title>&gt; Does this commit fix it for you?

The first change did n</title> 
   <description>&gt; Does this commit fix it for you?

The first change did not work, however, this last one worked like a charm.  Excellent! and Thank You!

I want to leave the manual change in our server for now.  When do you think that mod will be available in the upstream through PEAR?</description> 
   <pubDate>Fri, 18 Mar 2016 14:41:17 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/14267#t90208</link> 
  </item> 
   
  <item> 
   <title>
&gt; I want to leave the manual change in our server for now.</title> 
   <description>
&gt; I want to leave the manual change in our server for now.  When do you 
&gt; think that mod will be available in the upstream through PEAR?

I will try to do a round of application releases this Monday.</description> 
   <pubDate>Fri, 18 Mar 2016 15:00:48 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/14267#t90209</link> 
  </item> 
   
  <item> 
   <title>Changes have been made in Git (FRAMEWORK_5_2):

commit 8faee</title> 
   <description>Changes have been made in Git (FRAMEWORK_5_2):

commit 8faee7d4b14191bc75aecab19c65ffbe9f216675
Author: Michael J Rubinsky &lt;mrubinsk@horde.org&gt;
Date:   Fri, 18 Mar 2016 00:22:28 -0400

Bug: 14267 Fix opening compose window on IE when uploads are disabled.

 M js/compose-dimp.js

https://github.com/horde/imp/commit/8faee7d4b14191bc75aecab19c65ffbe9f216675</description> 
   <pubDate>Fri, 20 Oct 2017 20:33:37 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/14267#t92337</link> 
  </item> 
   
  <item> 
   <title>Changes have been made in Git (FRAMEWORK_5_2):

commit 3f2a8</title> 
   <description>Changes have been made in Git (FRAMEWORK_5_2):

commit 3f2a8628a7ea3f541f7da60a830702c6dd4cbb95
Author: Michael J Rubinsky &lt;mrubinsk@horde.org&gt;
Date:   Fri, 18 Mar 2016 07:12:51 -0400

Revert &quot;Bug: 14267 Fix opening compose window on IE when uploads are disabled.&quot;

This reverts commit 6d45affb6b861786924630eefc2c1b758d6d07bc.

 M js/compose-dimp.js

https://github.com/horde/imp/commit/3f2a8628a7ea3f541f7da60a830702c6dd4cbb95</description> 
   <pubDate>Fri, 20 Oct 2017 20:33:37 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/14267#t92338</link> 
  </item> 
   
  <item> 
   <title>Changes have been made in Git (FRAMEWORK_5_2):

commit 45811</title> 
   <description>Changes have been made in Git (FRAMEWORK_5_2):

commit 4581143a7c784102f4976645715ea2bab9e21024
Author: Michael J Rubinsky &lt;mrubinsk@horde.org&gt;
Date:   Fri, 18 Mar 2016 07:14:21 -0400

Bug: 14267 Cleaner way of fixing opening compose window on IE when uploads are disabled.

 M js/compose-dimp.js

https://github.com/horde/imp/commit/4581143a7c784102f4976645715ea2bab9e21024</description> 
   <pubDate>Fri, 20 Oct 2017 20:33:37 +0000</pubDate> 
   <link>https://bugs.horde.org/ticket/14267#t92339</link> 
  </item> 
   
   
 
 </channel> 
</rss> 
