_rsvp_remove_attendee

Definition

_rsvp_remove_attendee($hash)
rsvp/rsvp.module, line 1527

Description

  • Removes an rsvp's attendee
*
  • *

Parameters

$hash The hash key value of the rsvp attendee.

  • @return boolean true if successful.

Code

<?php
function _rsvp_remove_attendee($hash) {
  return db_query('DELETE FROM {rsvp_invite} WHERE hash = \'%s\'', $hash);
}
?>