Changeset 2607171
- Timestamp:
- 09/30/2021 10:01:18 AM (5 years ago)
- Location:
- bookertools-shows/trunk
- Files:
-
- 3 edited
-
bookertools-helpers.php (modified) (1 diff)
-
bookertools-integration.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bookertools-shows/trunk/bookertools-helpers.php
r1847588 r2607171 25 25 function codefairies_bookertools_parseIso8601date($date){ 26 26 if(strlen($date)>0){ 27 $d = DateTime::createFromFormat(DateTime::ISO8601, $date); 27 //$d = DateTime::createFromFormat(DateTime::ISO8601, $date); 28 $d = DateTime::createFromFormat("Y-m-d\TH:i:s", $date); 28 29 return $d->format('d-m-Y'); 29 30 } -
bookertools-shows/trunk/bookertools-integration.php
r2038076 r2607171 4 4 * Plugin URI: https://app.bookertools.com 5 5 * Description: This plugin offers integration with Bookertools 2.0 through a widget and shortcodes [bookertools_shows] & [bookertools_tours] to display your announced Bookertools shows and tours. 6 * Version: 1.4. 56 * Version: 1.4.6 7 7 * Author: CodeFairies 8 8 * Author URI: https://www.codefairies.com … … 238 238 $new_input['team_token'] = ''; 239 239 240 $token_url = $new_input['team_url'] . '/api/ token/' . $new_input['team_hash'];240 $token_url = $new_input['team_url'] . '/api/account/token/' . $new_input['team_hash']; 241 241 $response = wp_remote_get($token_url); 242 242 … … 296 296 <input type="url" style="width:100%%" id="team_url" name="bookertools-hash[team_url]" value="%s" placeholder="bookertools url" /> 297 297 ', 298 isset( $this->options['team_url'] ) ? esc_attr( $this->options['team_url']) : 'https://ap p.bookertools.com'298 isset( $this->options['team_url'] ) ? esc_attr( $this->options['team_url']) : 'https://api.bookertools.com' 299 299 ); 300 300 } -
bookertools-shows/trunk/readme.txt
r2038074 r2607171 49 49 50 50 == Upgrade Notice == 51 = 1.4.6 = 52 Bugfix - changes for new api 53 51 54 = 1.4.5 = 52 55 Bugfix - default limit 1000 shows
Note: See TracChangeset
for help on using the changeset viewer.