Changeset 1550793
- Timestamp:
- 12/09/2016 04:57:40 PM (9 years ago)
- File:
-
- 1 edited
-
vrpconnector/trunk/lib/VRPConnector.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vrpconnector/trunk/lib/VRPConnector.php
r1549657 r1550793 1690 1690 } 1691 1691 1692 if ( isset( $_SESSION['arrival'] ) ) {1692 if ( isset( $_SESSION['arrival'] ) && $_SESSION['arrival'] != '01/01/1970') { 1693 1693 $this->search->arrival = date( 'm/d/Y', strtotime( $_SESSION['arrival'] ) ); 1694 1694 } else { … … 1701 1701 } 1702 1702 1703 if ( isset( $_SESSION['depart'] ) ) {1703 if ( isset( $_SESSION['depart'] ) && $_SESSION['depart'] != '01/01/1970') { 1704 1704 $this->search->depart = date( 'm/d/Y', strtotime( $_SESSION['depart'] ) ); 1705 1705 } else {
Note: See TracChangeset
for help on using the changeset viewer.