You are here

function _drupalchat_touch_user in DrupalChat 6.2

Same name and namespace in other branches
  1. 6 drupalchat.module \_drupalchat_touch_user()
  2. 7.2 drupalchat.module \_drupalchat_touch_user()
  3. 7 drupalchat.module \_drupalchat_touch_user()
1 call to _drupalchat_touch_user()
drupalchat_poll in ./drupalchat.module
Process and get messages

File

./drupalchat.module, line 547
Module code for DrupalChat.

Code

function _drupalchat_touch_user($uid) {
  db_query('UPDATE {drupalchat_users} SET timestamp = %d WHERE uid = %d AND session = \'%s\'', time(), $uid, _drupalchat_get_sid());
}