/**
  *    adds a hidden input to the Ticket Selector form
  *
  * @access    public
  * @param string $html
  * @param    EE_Event $event
  * @param bool $tickets_in_cart
  * @return string
  */
 public static function filter_ticket_selector_form_html($html = '', $event = null, $tickets_in_cart = false)
 {
     if ($tickets_in_cart || EED_Multi_Event_Registration::has_tickets_in_cart($event)) {
         $html .= '<input type="hidden" value="view" name="event_cart">';
     }
     return $html;
 }