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=21609>. 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=21609 [PATCH] NaN error in XSP version of the calc flow example ------- Additional Comments From [EMAIL PROTECTED] 2003-07-28 17:23 ------- Sorry my mistake. It doesn't look like this is still necessary. I misread the code. I believe cocoon.request.name doesn't work because 'name' is a variable not the name of a request parameter. So the patch should most likely be EITHER - return parseFloat(cocoon.request.name); + return parseFloat(cocoon.request.getParameter(name)); OR - return parseFloat(cocoon.request.name); + return parseFloat(eval("cocoon.request." + name));
