diff --git a/source/java/src/org/lucee/extension/form/tag/Form.java b/source/java/src/org/lucee/extension/form/tag/Form.java index fc40fbe..92e6520 100755 --- a/source/java/src/org/lucee/extension/form/tag/Form.java +++ b/source/java/src/org/lucee/extension/form/tag/Form.java @@ -146,8 +146,8 @@ public void setFormat(String strFormat) throws PageException { else throw engine.getExceptionUtil().createApplicationException("invalid value ["+strFormat+"] for attribute format, for this attribute only the following values are supported " + "[xml, html, flash]"); - if(format!=FORMAT_HTML) - throw engine.getExceptionUtil().createApplicationException("format ["+strFormat+"] is not supported, only the following formats are supported [html]"); + // if(format!=FORMAT_HTML) + // throw engine.getExceptionUtil().createApplicationException("format ["+strFormat+"] is not supported, only the following formats are supported [html]"); // TODO support other formats }