Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

forget to declare a local for singlevalue in the form->renderhtml method... #109

Merged
merged 1 commit into from
Feb 24, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions knop8/LassoLibraries/knop.lasso
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[/*

On-Demand library for namespace knop
Namespace file built date 2015-02-21 04:53:04 by http://knop-project/knop8/source/buildnamespace.lasso
Namespace file built date 2015-02-23 15:49:53 by http://knop-project/knop8/source/buildnamespace.lasso
Montania System AB

*/]
Expand Down Expand Up @@ -4126,7 +4126,8 @@ Option for -> renderhtml to output without html encoding
'fieldvalue'=string,
'fieldvalue_array'=array,
'options'=array,
'usehint'=array;
'usehint'=array,
'singlevalue'=false;


// local var that adjust tag endings if rendered for XHTML
Expand Down
3 changes: 2 additions & 1 deletion knop8/source/_ctype/form.inc
Original file line number Diff line number Diff line change
Expand Up @@ -2074,7 +2074,8 @@ Option for -> renderhtml to output without html encoding
'fieldvalue'=string,
'fieldvalue_array'=array,
'options'=array,
'usehint'=array;
'usehint'=array,
'singlevalue'=false;


// local var that adjust tag endings if rendered for XHTML
Expand Down