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

Anonymous’s picture

hmm, ok, that's a bug it should be simple to fix.

thanks for the report.

Anonymous’s picture

Status: Active » Fixed

thanks, fixed with:

http://drupal.org/node/1090728

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.