Skip to content

Commit

Permalink
Merge pull request #109 from stevepiercy/master
Browse files Browse the repository at this point in the history
forget to declare a local for singlevalue in the form->renderhtml method.

See #107
  • Loading branch information
stevepiercy committed Feb 24, 2015
2 parents 919253b + 17dce8c commit c249742
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
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

0 comments on commit c249742

Please sign in to comment.