function _drupalchat_touch_user in DrupalChat 6
Same name and namespace in other branches
- 6.2 drupalchat.module \_drupalchat_touch_user()
- 7.2 drupalchat.module \_drupalchat_touch_user()
- 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 216 - Module code for DrupalChat.
Code
function _drupalchat_touch_user($uid) {
db_query('UPDATE {drupalchat_users} SET timestamp = %d WHERE uid = %d', time(), $uid);
}