From: richard Date: Mon, 14 Jan 2002 05:16:51 +0000 (+0000) Subject: The submit buttons need a name attribute or mozilla won't submit without a X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=9bb0f2d875ff2f1467d1a0fb73edc2f9f238d122;p=roundup.git The submit buttons need a name attribute or mozilla won't submit without a file upload. Yeah, that's bloody obscure. Grr. git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@538 57a73879-2fb5-44c3-a270-3262357dd7e2 --- diff --git a/roundup/htmltemplate.py b/roundup/htmltemplate.py index ed00a0e..09746e3 100644 --- a/roundup/htmltemplate.py +++ b/roundup/htmltemplate.py @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: htmltemplate.py,v 1.53 2002-01-14 04:03:32 richard Exp $ +# $Id: htmltemplate.py,v 1.54 2002-01-14 05:16:51 richard Exp $ __doc__ = """ Template engine. @@ -468,9 +468,9 @@ class TemplateFunctions: ''' add a submit button for the item ''' if self.nodeid: - return _('') + return _('') elif self.form is not None: - return _('') + return _('') else: return _('[Submit: not called from item]') @@ -889,6 +889,9 @@ class NewItemTemplate(TemplateFunctions): # # $Log: not supported by cvs2svn $ +# Revision 1.53 2002/01/14 04:03:32 richard +# How about that ... date fields have never worked ... +# # Revision 1.52 2002/01/14 02:20:14 richard # . changed all config accesses so they access either the instance or the # config attriubute on the db. This means that all config is obtained from