_rsvp_get_invite($hash)
rsvp/rsvp.module, line 1470
$hash The hash value of the invite.
<?php
function _rsvp_get_invite($hash) {
return db_fetch_object(db_query('SELECT * FROM {rsvp} r LEFT JOIN {rsvp_invite} u ON r.rid = u.rid WHERE u.hash = \'%s\'', $hash));
}
?>