You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rj...@apache.org on 2014/01/09 23:41:32 UTC

svn commit: r1556975 - /httpd/mod_mbox/trunk/module-2.0/mod_mbox.h

Author: rjung
Date: Thu Jan  9 22:41:32 2014
New Revision: 1556975

URL: http://svn.apache.org/r1556975
Log:
Revert order of message id and uri escaping.

Modified:
    httpd/mod_mbox/trunk/module-2.0/mod_mbox.h

Modified: httpd/mod_mbox/trunk/module-2.0/mod_mbox.h
URL: http://svn.apache.org/viewvc/httpd/mod_mbox/trunk/module-2.0/mod_mbox.h?rev=1556975&r1=1556974&r2=1556975&view=diff
==============================================================================
--- httpd/mod_mbox/trunk/module-2.0/mod_mbox.h (original)
+++ httpd/mod_mbox/trunk/module-2.0/mod_mbox.h Thu Jan  9 22:41:32 2014
@@ -159,7 +159,7 @@ const char *get_base_name(request_rec *r
 (s ? mbox_cntrl_escape(pool, ap_escape_html(pool, mbox_cte_decode_header(pool, s))) : "")
 
 #define MSG_ID_ESCAPE_OR_BLANK(pool, s) \
-(s ? ap_escape_uri(pool, mbox_msg_id_escape(pool, s)) : "")
+(s ? mbox_msg_id_escape(pool, ap_escape_uri(pool, s)) : "")
 
 /* Backend functions */
 apr_array_header_t *mbox_fetch_boxes_list(request_rec *r,