Skip to content

Commit

Permalink
fixed upload default values, thanks Marin Pranjic
Browse files Browse the repository at this point in the history
  • Loading branch information
mdipierro committed Mar 15, 2013
1 parent 1325b0e commit 6f0d4d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Version 2.4.4-stable+timestamp.2013.03.12.10.40.02
Version 2.4.4-stable+timestamp.2013.03.15.09.38.01
3 changes: 2 additions & 1 deletion gluon/sqlhtml.py
Original file line number Diff line number Diff line change
Expand Up @@ -1440,7 +1440,8 @@ def accepts(
f = self.table[fieldname].default or ''
fields[fieldname] = f
else:
fields[fieldname] = ''
f = self.table[fieldname].default or ''
fields[fieldname] = f
self.vars[fieldname] = fields[fieldname]
if not f:
continue
Expand Down

0 comments on commit 6f0d4d0

Please sign in to comment.