Menu

Minor change in attribute names and one major bug fix

1. cstyle and fstyle are changed to lCellAtt and rCellAtt, because they are ment to contain additional table cell parameters, wich cannot be set in template file, because they must be changed dynamicly from table cell to table cell. If you used this two attributes in your forms, make sure that you change their names.

2. I have repared a nasty bug wich caused that new fields were appearing after form submition if key value in options array differ from first alue in value array.
For example:

"options" => array(
"man" => array( "man" ),
"woman" => array( "woman" )
)

This worked yust fine

"options" => array(
"man" => array( "1" ),
"woman" => array( "2" )
)

but this caused nasty error :(

This bug is now fixed. And works correctly with version 1.0.3 and above.

Posted by Simon 2001-07-22

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.