/**
  * Removes a ticket ID from a customer
  *
  * @access	public
  * @since	1.0
  */
 public function remove_ticket($customer_id = 0, $ticket_id = 0)
 {
     $customer = new KBS_Customer($customer_id);
     if (!$customer) {
         return false;
     }
     // Remove the ticket, but don't decrease stats, as this function previously did not
     return $customer->remove_ticket($ticket_id, false);
 }