DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17733>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17733

Map based forms and indexed fields do not work correctly





------- Additional Comments From [EMAIL PROTECTED]  2003-03-06 17:36 -------
Oops.  i actually have a bug in my bug fix:

        if (name != null)
        {
           handlers.append(name);
           handlers.append("_");
        }
        handlers.append("_");


should be:

        if (name != null)
        {
           handlers.append(name);
        }
        handlers.append("_");

I had erroneously appeneded the _ twice.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to