From: Ian Weller Date: Tue, 27 Jun 2017 13:55:33 +0000 (-0400) Subject: removed an unneeded page template. X-Git-Tag: v1.0.0^2~21 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=a7ddc0b2c7f2901a37ffb54ce2e003a671ee377e;p=WP-Themes%2Fthedriftwoodonline.git removed an unneeded page template. I removed a page template that is no longer needed. --- diff --git a/page-150.php b/page-150.php deleted file mode 100644 index 68037d8..0000000 --- a/page-150.php +++ /dev/null @@ -1,83 +0,0 @@ - -
-
- -
-
-
-
- -
- -
-
- - - -

- - array( - 'filter' => FILTER_VALIDATE_REGEXP, - 'options' => array( - 'regexp' => '%[0-9]{4}-[0-9]{2}-[0-9]{2}%' - ) - ), - 'DepartureDate' => array( - 'filter' => FILTER_VALIDATE_REGEXP, - 'options' => array( - 'regexp' => '%[0-9]{4}-[0-9]{2}-[0-9]{2}%' - ) - ), - ) - ); - $formData = filter_var_array( - $_POST, - array( - 'ArrivalDate' => array( - 'filter' => FILTER_VALIDATE_REGEXP, - 'options' => array( - 'regexp' => '%[0-9]{2}/[0-9]{2}/[0-9]{4}%' - ) - ), - 'DepartureDate' => array( - 'filter' => FILTER_VALIDATE_REGEXP, - 'options' => array( - 'regexp' => '%[0-9]{2}/[0-9]{2}/[0-9]{4}%' - ) - ), - 'Occupancy' => FILTER_VALIDATE_INT, - 'Location' => array( - 'filter' => FILTER_SANITIZE_STRING, - 'flags' => FILTER_FLAG_NO_ENCODE_QUOTES - ), - ) - ); - $location = urlencode($formData['Location']); - $arrival = urlencode($formData['ArrivalDate']); - if ($formData2['ArrivalDate']) { - $arrival = urlencode( date( "m/d/Y", strtotime( $formData2['ArrivalDate'] ) ) ); - } - $departure = urlencode($formData['DepartureDate']); - if ($formData2['DepartureDate']) { - $departure = urlencode( date( "m/d/Y", strtotime( $formData2['DepartureDate'] ) ) ); - } - $occupancy = urlencode($formData['Occupancy']); - if ($arrival == NULL || $departure == NULL){ - $arrival = urlencode(date("m/d/Y", strtotime("+3 days"))); - $departure = urlencode(date("m/d/Y", strtotime($arrival. ' +3 days'))); - } - if ($occupancy == NULL){ - $occupancy = urlencode(1); - } - $iframeSrc = "https://weblink.instantsoftware.com/search/1134?ArrivalDate={$arrival}&DepartureDate={$departure}&Occupancy={$occupancy}&Location={$location}";?> - -
-
-
-