Fossil SCM
Missing closing tags in page setup_login_group
Fixed
f687f1eb9871484…
· opened 13 years, 4 months ago
- Type
- Code_Defect
- Priority
- —
- Severity
- Minor
- Resolution
- Fixed
- Subsystem
- —
- Created
- Nov. 25, 2012 3:54 p.m.
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.