From 5f003600bc8bab514ffb3ea25019d765fce93b13 Mon Sep 17 00:00:00 2001 From: the_mgt Date: Wed, 6 Jul 2011 00:10:51 +0200 Subject: [PATCH] Added a missing "=" on the userpicture link "alt" tag, the "&" does work fine Also X-escaped the roomname on knrooms_rooms.html (for the roomnames containing &) and added two missing s to the knrooms.html. W3C is happier now --- webcit/static/t/knrooms.html | 2 ++ webcit/static/t/knrooms_rooms.html | 2 +- webcit/userlist.c | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/webcit/static/t/knrooms.html b/webcit/static/t/knrooms.html index ea7411244..9fc8a5975 100644 --- a/webcit/static/t/knrooms.html +++ b/webcit/static/t/knrooms.html @@ -2,3 +2,5 @@
+ + diff --git a/webcit/static/t/knrooms_rooms.html b/webcit/static/t/knrooms_rooms.html index 7c3978627..7c7f27491 100644 --- a/webcit/static/t/knrooms_rooms.html +++ b/webcit/static/t/knrooms_rooms.html @@ -11,7 +11,7 @@  ">"> - +
diff --git a/webcit/userlist.c b/webcit/userlist.c index 8889a1996..a244a999d 100644 --- a/webcit/userlist.c +++ b/webcit/userlist.c @@ -113,7 +113,7 @@ void showuser(void) output_headers(1, 1, 2, 0, 0, 0); wc_printf("
\n"); - wc_printf(""); + wc_printf("\"\""); wc_printf("

"); wc_printf(_("User profile")); wc_printf("

"); -- 2.39.2