View Ticket
Not logged in
Ticket UUID: f687f1eb987148448aaef6eaae33909472292d54
Title: Missing closing tags in page setup_login_group
Status: Fixed Type: Code_Defect
Severity: Minor Priority:
Subsystem: Resolution: Fixed
Last Modified: 2012-11-25 18:06:34
Version Found In: d13143
Description & Comments:
There are missing closing tags
</blockquote> </div> </form>
for the form on page setup_login_group. The following patch should fix it:
--- setup.orig	2012-11-25 11:37:53.000000000 +0100
+++ setup.c	2012-11-25 16:46:03.000000000 +0100
@@ -1047,7 +1047,7 @@
     @
     @ <tr><td colspan="3" align="center">
     @ <input type="submit" value="Join" name="join"></td></tr>
-    @ </table>
+    @ </table></bockquote></div></form>
   }else{
     Stmt q;
     int n = 0;

anonymous added on 2012-11-25 16:09:01 UTC:
Additionally, there's a typo in the same section (src/setup.c, line 1029):

    @ <blockquote><table broder="0">

It should be border.


drh added on 2012-11-25 18:06:34 UTC:
Also added some missing <tr> elements.