]> code.citadel.org Git - citadel.git/blobdiff - webcit/html2html.c
Detect screen dimensions _before_ attaching to the server.
[citadel.git] / webcit / html2html.c
index 5f0ae0f16794e7537bb87f6072e337359907271c..82962daed14417b5187a263bdf688058bad28b13 100644 (file)
@@ -386,7 +386,6 @@ void output_html(const char *supplied_charset, int treat_as_wiki, int msgnum, St
                else if (!strncasecmp(ptr, "<a href=\"", 9)) {
                        ++alevel;
                        ++brak;
-                       syslog(LOG_DEBUG, "\033[32mHYPERLINK: %s\033[0m", ptr);
                        if ( ((strchr(ptr, ':') < strchr(ptr, '/')))
                                        &&  ((strchr(ptr, '/') < strchr(ptr, '>'))) 
                           ) {
@@ -398,6 +397,7 @@ void output_html(const char *supplied_charset, int treat_as_wiki, int msgnum, St
                                (treat_as_wiki)
                                && (strncasecmp(ptr, "<a href=\"wiki?", 14))
                                && (strncasecmp(ptr, "<a href=\"dotgoto?", 17))
+                               && (strncasecmp(ptr, "<a href=\"knrooms?", 17))
                        ) {
                                content_length += 64;
                                StrBufAppendPrintf(converted_msg, "<a href=\"wiki?page=");