From: Wilfried Göesgens Date: Sat, 14 Aug 2010 14:09:16 +0000 (+0000) Subject: * after creating a floor, flush the caches. X-Git-Tag: v8.01~916 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;ds=sidebyside;h=0a1445537410d90539682a46e61c2a901d3eee9f;p=citadel.git * after creating a floor, flush the caches. --- diff --git a/webcit/floors.c b/webcit/floors.c index 0cb82ce2c..b183d6be1 100644 --- a/webcit/floors.c +++ b/webcit/floors.c @@ -161,6 +161,7 @@ void delete_floor(void) { StrBufCutLeft(Buf, 4); } + FlushRoomlist(); display_floorconfig(Buf); FreeStrBuf(&Buf); } @@ -183,6 +184,7 @@ void create_floor(void) { StrBufCutLeft(Buf, 4); } + FlushRoomlist(); display_floorconfig(Buf); FreeStrBuf(&Buf); } @@ -195,6 +197,7 @@ void rename_floor(void) { StrBuf *Buf; Buf = NewStrBuf(); + FlushRoomlist(); serv_printf("EFLR %d|%s", ibstr("floornum"), bstr("floorname")); StrBuf_ServGetln(Buf);