Commit 888c2ef0 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Updated for 3.3.3

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/branches/3_3_1_branch@9185 b35dd754-fafc-0310-a699-88a17e54d16e
parent ff2e38ee
......@@ -164,16 +164,18 @@ hr {
<h2>3.3.3 -- <span style="font-weight: normal;">August 21, 2007</span></h2>
<h2>3.3.3 -- <span style="font-weight: normal;">September 20, 2007</span></h2>
<h3>Openfire New Features</h3>
<ul>
<li>No changes</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/JM-1018'>JM-1054</a>] - Updated MINA library to latest version. <i>Nice optimizations and fixes</i>.</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/JM-1126'>JM-1126</a>] - Added debug information when quering LDAP for groups of a given user.</li>
</ul>
<h3>Openfire Bug Fixes</h3>
<ul>
<li>No changes</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/JM-1127'>JM-1127</a>] - Parsing XML containing multibyte characters could add null characters to the resulting stanza. Thanks to Tim.</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/JM-1125'>JM-1125</a>] - An IQ of type error is now returned instead of closing the connection when an internal error occurs while processing an IQ packet.</li>
</ul>
<h3>Openfire Enterprise</h3>
......@@ -187,6 +189,7 @@ hr {
<li>[<a href='http://www.igniterealtime.org/issues/browse/ENT-112'>ENT-112</a>] - Conversation archiving was sometimes logging a conversation as two conversations.</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/ENT-36'>ENT-36</a>] - There was no way to disable chat transcript settings once set.</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/ENT-86'>ENT-86</a>] - Logging into fastpath was using the users current presence, and no longer defaulting to "Available".</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/ENT-166'>ENT-166</a>] - Emails were not being encoded in email transcripts.</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/ENT-78'>ENT-78</a>] - User is now alerted in offline settings if their email settings were not set.</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/ENT-81'>ENT-81</a>] - Fixed Javascript error in webchat userinfo page. (province not found)</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/ENT-137'>ENT-137</a>] - Crossdomain servlet was not sending out correct response occasionally.</li>
......@@ -194,7 +197,8 @@ hr {
<h3>Openfire Connection Manager Module</h3>
<ul>
<li>No changes</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/JM-1127'>JM-1127</a>] - Parsing XML containing multibyte characters could add null characters to the resulting stanza.</li>
<li>[<a href='http://www.igniterealtime.org/issues/browse/JM-1018'>JM-1054</a>] - Updated MINA library to latest version.</li>
</ul>
<h2>3.3.2 -- <span style="font-weight: normal;">June 22, 2007</span></h2>
......
......@@ -11,9 +11,9 @@
package org.jivesoftware.openfire.interceptor;
import org.jivesoftware.util.Log;
import org.jivesoftware.openfire.XMPPServer;
import org.jivesoftware.openfire.session.Session;
import org.jivesoftware.util.Log;
import org.xmpp.packet.Packet;
import java.util.Collection;
......@@ -236,7 +236,7 @@ public class InterceptorManager {
}
}
catch (Throwable e) {
Log.error("Error in interceptor: " + interceptor, e);
Log.error("Error in interceptor: " + interceptor + " while intercepting: " + packet, e);
}
}
}
......@@ -263,7 +263,7 @@ public class InterceptorManager {
}
}
catch (Throwable e) {
Log.error("Error in interceptor: " + interceptor, e);
Log.error("Error in interceptor: " + interceptor + " while intercepting: " + packet, e);
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment