Skip to content

Commit fd23112

Browse files
author
Richard Jones
committed
Oops. uses pagefoot now.
1 parent 5c59cbe commit fd23112

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

roundup/cgi_client.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: cgi_client.py,v 1.47 2001-11-03 01:29:28 richard Exp $
18+
# $Id: cgi_client.py,v 1.48 2001-11-03 01:30:18 richard Exp $
1919

2020
import os, cgi, pprint, StringIO, urlparse, re, traceback, mimetypes
2121
import binascii, Cookie, time
@@ -541,7 +541,8 @@ def login(self, message=None):
541541
</form>
542542
''')
543543
if self.user is None and self.ANONYMOUS_REGISTER == 'deny':
544-
self.write('</table></body></html>')
544+
self.write('</table>')
545+
self.pagefoot()
545546
return
546547
self.write('''
547548
<p>
@@ -565,8 +566,9 @@ def login(self, message=None):
565566
<tr><td></td>
566567
<td><input type="submit" value="Register"></td></tr>
567568
</form>
568-
</table</body></html>>
569+
</table>
569570
''')
571+
self.pagefoot()
570572

571573
def login_action(self, message=None):
572574
if not self.form.has_key('__login_name'):
@@ -876,6 +878,9 @@ def parsePropsFromForm(db, cl, form, nodeid=0):
876878

877879
#
878880
# $Log: not supported by cvs2svn $
881+
# Revision 1.47 2001/11/03 01:29:28 richard
882+
# Login page didn't have all close tags.
883+
#
879884
# Revision 1.46 2001/11/03 01:26:55 richard
880885
# possibly fix truncated base64'ed user:pass
881886
#

0 commit comments

Comments
 (0)