Plugin Directory

Changeset 1242767


Ignore:
Timestamp:
09/10/2015 08:06:49 PM (11 years ago)
Author:
trackhs
Message:

1.6.8 fixes

Location:
track-connect/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • track-connect/trunk/includes/views/single-listing.php

    r1238198 r1242767  
    189189            <h3 class="widget-title">Reservation Quote</h3>
    190190            <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))?>" >
    193193            <input type="hidden" id="cid" name="cid" value="<?=$unit_id?>">
    194194            <input type="text" name="daterange" id="daterange" placeholder="Select dates..." size="48" value="<?=$dateRange?>"><br>
     
    344344                        action: 'quote_request',
    345345                        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(),
    348348                        persons: persons
    349349                    },
  • track-connect/trunk/plugin.php

    r1240960 r1242767  
    77    Author URI: http://www.trackhs.com
    88
    9     Version: 1.6.7
     9    Version: 1.6.8
    1010
    1111    License: GNU General Public License v2.0 (or later)
     
    5555
    5656    define( 'WP_LISTINGS_URL', plugin_dir_url( __FILE__ ) );
    57     define( 'WP_LISTINGS_VERSION', '1.6.7' );
     57    define( 'WP_LISTINGS_VERSION', '1.6.8' );
    5858
    5959    /** Load textdomain for translation */
  • track-connect/trunk/readme.txt

    r1240960 r1242767  
    44Requires at least: 3.7
    55Tested up to: 4.2.3
    6 Stable tag: 1.6.7
     6Stable tag: 1.6.8
    77
    88Creates 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.