From: Wilfried Goesgens Date: Sun, 8 Dec 2013 10:52:01 +0000 (+0100) Subject: MARKDOWN: two more places to handle the new room mode. X-Git-Tag: v9.01~170 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=aa129a24778bb38e8e455a463364f76148bba39b MARKDOWN: two more places to handle the new room mode. --- diff --git a/citadel/euidindex.c b/citadel/euidindex.c index 7e5c735d0..38968219b 100644 --- a/citadel/euidindex.c +++ b/citadel/euidindex.c @@ -40,6 +40,7 @@ int DoesThisRoomNeedEuidIndexing(struct ctdlroom *qrbuf) { case VIEW_TASKS: return(1); case VIEW_NOTES: return(1); case VIEW_WIKI: return(1); + case VIEW_WIKIMD: return(1); case VIEW_BLOG: return(1); } diff --git a/citadel/modules/ctdlproto/serv_messages.c b/citadel/modules/ctdlproto/serv_messages.c index e2fda42ce..46c540f83 100644 --- a/citadel/modules/ctdlproto/serv_messages.c +++ b/citadel/modules/ctdlproto/serv_messages.c @@ -360,6 +360,7 @@ void cmd_ent0(char *entargs) switch(CC->room.QRdefaultview) { case VIEW_NOTES: case VIEW_WIKI: + case VIEW_WIKIMD: extract_token(supplied_euid, entargs, 9, '|', sizeof supplied_euid); break; default: