Changeset 1242767
- Timestamp:
- 09/10/2015 08:06:49 PM (11 years ago)
- Location:
- track-connect/trunk
- Files:
-
- 3 edited
-
includes/views/single-listing.php (modified) (2 diffs)
-
plugin.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
track-connect/trunk/includes/views/single-listing.php
r1238198 r1242767 189 189 <h3 class="widget-title">Reservation Quote</h3> 190 190 <form target="_blank" action="<?=$endpoint?>/irm/checkout/"> 191 <input type="hidden" id="checkin_date" name="checkin" value="<?= $checkin?>" >192 <input type="hidden" id="checkout_date" name="checkout" value="<?= $checkout?>" >191 <input type="hidden" id="checkin_date" name="checkin" value="<?=date('Y-m-d', strtotime($checkin))?>" > 192 <input type="hidden" id="checkout_date" name="checkout" value="<?=date('Y-m-d', strtotime($checkout))?>" > 193 193 <input type="hidden" id="cid" name="cid" value="<?=$unit_id?>"> 194 194 <input type="text" name="daterange" id="daterange" placeholder="Select dates..." size="48" value="<?=$dateRange?>"><br> … … 344 344 action: 'quote_request', 345 345 cid: '<?=$unit_id?>', 346 checkin: moment($('#checkin_date').val()).format("YYYY-MM-DD"),347 checkout: moment($('#checkout_date').val()).format("YYYY-MM-DD"),346 checkin: $('#checkin_date').val(), 347 checkout: $('#checkout_date').val(), 348 348 persons: persons 349 349 }, -
track-connect/trunk/plugin.php
r1240960 r1242767 7 7 Author URI: http://www.trackhs.com 8 8 9 Version: 1.6. 79 Version: 1.6.8 10 10 11 11 License: GNU General Public License v2.0 (or later) … … 55 55 56 56 define( 'WP_LISTINGS_URL', plugin_dir_url( __FILE__ ) ); 57 define( 'WP_LISTINGS_VERSION', '1.6. 7' );57 define( 'WP_LISTINGS_VERSION', '1.6.8' ); 58 58 59 59 /** Load textdomain for translation */ -
track-connect/trunk/readme.txt
r1240960 r1242767 4 4 Requires at least: 3.7 5 5 Tested up to: 4.2.3 6 Stable tag: 1.6. 76 Stable tag: 1.6.8 7 7 8 8 Creates and syncs listing-type posts from TRACK PM, a cloud-based property management system (www.trackhs.com).
Note: See TracChangeset
for help on using the changeset viewer.