From 1fef092c138eb2eb8ebe1fa7978d0de411c0a2a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim=20D=C3=BCsterhus?= Date: Sat, 3 Mar 2012 23:18:52 +0100 Subject: [PATCH] Sending HTTP 204 in ChatLeaveAction --- file/lib/action/ChatLeaveAction.class.php | 1 + 1 file changed, 1 insertion(+) diff --git a/file/lib/action/ChatLeaveAction.class.php b/file/lib/action/ChatLeaveAction.class.php index 6a372a0..f2f3146 100644 --- a/file/lib/action/ChatLeaveAction.class.php +++ b/file/lib/action/ChatLeaveAction.class.php @@ -59,6 +59,7 @@ public function execute() { \wcf\util\ChatUtil::writeUserData(array('roomID' => null)); $this->executed(); + header("HTTP/1.0 204 No Content"); exit; } }