Code

The submit buttons need a name attribute or mozilla won't submit without a
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 14 Jan 2002 05:16:51 +0000 (05:16 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Mon, 14 Jan 2002 05:16:51 +0000 (05:16 +0000)
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

roundup/htmltemplate.py

index ed00a0e695c267a51a1223346b97b6f62c947083..09746e3ad9637d9c2f761bb55d189649234ea099 100644 (file)
@@ -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 _('<input type="submit" value="Submit Changes">')
+            return _('<input type="submit" name="submit" value="Submit Changes">')
         elif self.form is not None:
-            return _('<input type="submit" value="Submit New Entry">')
+            return _('<input type="submit" name="submit" value="Submit New Entry">')
         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