From: Wilfried Göesgens Date: Sun, 15 Aug 2010 13:02:43 +0000 (+0000) Subject: * set_room_policy(): use modern representations of the policy names X-Git-Tag: v8.01~897 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=a6c0c39e51a4c197e35a2a5fbc907a9252ce5a1a * set_room_policy(): use modern representations of the policy names --- diff --git a/webcit/roomops.c b/webcit/roomops.c index 56e3f2041..79323c9f8 100644 --- a/webcit/roomops.c +++ b/webcit/roomops.c @@ -2942,17 +2942,17 @@ void set_room_policy(void) { return; } - serv_printf("SPEX room|%d|%d", ibstr("roompolicy"), ibstr("roomvalue")); + serv_printf("SPEX roompolicy|%d|%d", ibstr("roompolicy"), ibstr("roomvalue")); serv_getln(buf, sizeof buf); strcpy(WC->ImportantMessage, &buf[4]); if (WC->axlevel >= 6) { strcat(WC->ImportantMessage, "
\n"); - serv_printf("SPEX floor|%d|%d", ibstr("floorpolicy"), ibstr("floorvalue")); + serv_printf("SPEX floorpolicy|%d|%d", ibstr("floorpolicy"), ibstr("floorvalue")); serv_getln(buf, sizeof buf); strcat(WC->ImportantMessage, &buf[4]); } - + FlushRoomlist(); http_transmit_thing(ChrPtr(do_template("room_edit", NULL)), 0); }