pombreda / formalchemy

Automatically exported from code.google.com/p/formalchemy
MIT License
0 stars 0 forks source link

error in restfieldset.mako template #133

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Hi!

Line 89 of restfieldset.mako file:

  for (var i = 0; icons.length-1; i++) {

must be: 

  for (var i = 0; i<icons.length; i++) {

Regards

Original issue reported on code.google.com by gins...@gmail.com on 28 Feb 2010 at 11:19

GoogleCodeExporter commented 9 years ago
Already fixed: 
http://code.google.com/p/formalchemy/source/browse/formalchemy/paster_template
s/pylons_fa/%2Bpackage%2B/templates/forms/restfieldset.mako_tmpl#90

Original comment by gael.pas...@gmail.com on 28 Feb 2010 at 11:38