fix: can't change default size of text fields

This commit is contained in:
Michele Dell'Aquila 2006-09-06 18:45:41 +00:00
parent 31f951e498
commit bed0c9130f
2 changed files with 2 additions and 1 deletions

View file

@ -1,4 +1,5 @@
7.0.7
- fix: can't change default size of text fields (midellaq)
- fix: sqlform trunctate search results doesn't work (Martin Kamerbeek /
Procolix)
- fixed some of bugs in the sqlform concerning file uploads, cross table

View file

@ -134,7 +134,7 @@ sub new {
$formObj->correctOptions($param->{possibleValues});
}
elsif ($size) {
$formObj->{size} = $size;
$formObj->set('size',$size);
}
return $formObj;
}