Closed (fixed)
Project:
Chatroom
Version:
6.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
13 Mar 2011 at 01:58 UTC
Updated:
10 Apr 2011 at 02:31 UTC
Jump to comment: Most recent
The ajax callbacks for add, remove, invite, kick, and ban do not currently work. They all check for a form token and form id that are not posted for any of those callbacks. Removing or commenting out the following lines from each of the callbacks allows them to function correctly:
<?php
if (!chatroom_check_token($_POST['formToken'], $_POST['formId'])) {
exit;
}
?>
Comments
Comment #1
Anonymous (not verified) commentedhmm, ok, that's a bug it should be simple to fix.
thanks for the report.
Comment #2
Anonymous (not verified) commentedthanks, fixed with:
http://drupal.org/node/1090728