Skip to content

Commit 5c59cbe

Browse files
author
Richard Jones
committed
Login page didn't have all close tags.
1 parent e12135a commit 5c59cbe

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

roundup/cgi_client.py

Lines changed: 6 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.46 2001-11-03 01:26:55 richard Exp $
18+
# $Id: cgi_client.py,v 1.47 2001-11-03 01:29:28 richard Exp $
1919

2020
import os, cgi, pprint, StringIO, urlparse, re, traceback, mimetypes
2121
import binascii, Cookie, time
@@ -541,7 +541,7 @@ def login(self, message=None):
541541
</form>
542542
''')
543543
if self.user is None and self.ANONYMOUS_REGISTER == 'deny':
544-
self.write('</table>')
544+
self.write('</table></body></html>')
545545
return
546546
self.write('''
547547
<p>
@@ -565,7 +565,7 @@ def login(self, message=None):
565565
<tr><td></td>
566566
<td><input type="submit" value="Register"></td></tr>
567567
</form>
568-
</table>
568+
</table</body></html>>
569569
''')
570570

571571
def login_action(self, message=None):
@@ -876,6 +876,9 @@ def parsePropsFromForm(db, cl, form, nodeid=0):
876876

877877
#
878878
# $Log: not supported by cvs2svn $
879+
# Revision 1.46 2001/11/03 01:26:55 richard
880+
# possibly fix truncated base64'ed user:pass
881+
#
879882
# Revision 1.45 2001/11/01 22:04:37 richard
880883
# Started work on supporting a pop3-fetching server
881884
# Fixed bugs:

0 commit comments

Comments
 (0)