rsvp_cron

Definition

rsvp_cron()
rsvp/rsvp.module, line 70

Description

  • Implementation of hook_cron
*
  • Processing assuring that new users get their invitations associated with their account.

Code

<?php
function rsvp_cron() {
  db_query('UPDATE {rsvp_invite} r, {users} u SET r.uid = u.uid WHERE r.uid = 0 AND r.email = u.mail');
}
?>