X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Feuidindex.c;h=aa41d50dcc8c0149a16e810683a56e4ae3dbd9b0;hb=0adb29d5fa73df9c3760478405aaf71fa37054c4;hp=7e5c735d06a2e267d2fd4f1a1bf2b039d8987284;hpb=655de5af64c89584fbdd0110a27053a9f3bfd138;p=citadel.git diff --git a/citadel/euidindex.c b/citadel/euidindex.c index 7e5c735d0..aa41d50dc 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); } @@ -161,7 +162,7 @@ void rebuild_euid_index_for_room(struct ctdlroom *qrbuf, void *data) { syslog(LOG_DEBUG, "Rebuilding EUID index for <%s>\n", rplist->name); - CtdlUserGoto(rplist->name, 0, 0, NULL, NULL); + CtdlUserGoto(rplist->name, 0, 0, NULL, NULL, NULL, NULL); CtdlForEachMessage(MSGS_ALL, 0L, NULL, NULL, NULL, rebuild_euid_index_for_msg, NULL); }