Changeset 1580671
- Timestamp:
- 01/23/2017 10:19:02 PM (9 years ago)
- Location:
- pushpress-integration
- Files:
-
- 4 edited
- 7 copied
-
tags/1.5.12 (copied) (copied from pushpress-integration/trunk)
-
tags/1.5.12/inc/wp_pushpress_model.php (copied) (copied from pushpress-integration/trunk/inc/wp_pushpress_model.php) (2 diffs)
-
tags/1.5.12/inc/wp_pushpress_shortcode.php (copied) (copied from pushpress-integration/trunk/inc/wp_pushpress_shortcode.php)
-
tags/1.5.12/pushpress.php (copied) (copied from pushpress-integration/trunk/pushpress.php) (2 diffs)
-
tags/1.5.12/readme.txt (copied) (copied from pushpress-integration/trunk/readme.txt) (1 diff)
-
tags/1.5.12/templates/frontend/shortcode_leads.php (copied) (copied from pushpress-integration/trunk/templates/frontend/shortcode_leads.php)
-
tags/1.5.12/templates/frontend/shortcode_workouts.php (copied) (copied from pushpress-integration/trunk/templates/frontend/shortcode_workouts.php) (1 diff)
-
trunk/inc/wp_pushpress_model.php (modified) (2 diffs)
-
trunk/pushpress.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/templates/frontend/shortcode_workouts.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
pushpress-integration/tags/1.5.12/inc/wp_pushpress_model.php
r1576771 r1580671 417 417 } 418 418 419 419 420 420 $results = array(); 421 421 foreach ($tracks->data as $key => $track) { … … 437 437 set_transient("pp_track_workouts_" . $track->uuid, $workouts, 600); 438 438 } 439 439 440 440 $results[$key]['workouts'] = $this->filter_data_by_date($workouts, $timeNow, $client, $public_setting); 441 441 -
pushpress-integration/tags/1.5.12/pushpress.php
r1576771 r1580671 2 2 /** 3 3 * @package WP-PushPress 4 * @version 1.5.1 14 * @version 1.5.12 5 5 */ 6 6 /* … … 9 9 Description: Easily integrate your workouts, calendar, products, membership plans, events and more with your Wordpress blog! This plugin is a free add-on for existing PushPress clients. See https://pushpress.com for more info. 10 10 Author: PushPress, Inc 11 Version: 1.5.1 111 Version: 1.5.12 12 12 Author URI: https://pushpress.com 13 13 */ 14 14 define('PUSHPRESS_LOCAL', FALSE); 15 15 define('PUSHPRESS_DEV', FALSE); 16 define( 'PP_PLUGIN_VERSION', '1.5.1 1');16 define( 'PP_PLUGIN_VERSION', '1.5.12'); 17 17 define( 'PUSHPRESS_ERROR_REPORT', 0 ); 18 18 define( 'PUSHPRESS_BUTTON_CLASS', 'pushpress-button-class-' . rand(0, 10000)); -
pushpress-integration/tags/1.5.12/readme.txt
r1576771 r1580671 126 126 = 1.5.11 = 127 127 Found an issue affecting *some* PHP versions / hosting providers in how they were treating the data being returned from our API. This was causing white screens of death on our pages. Fixed the issue for those affected. 128 129 = 1.5.12 = 130 Found an issue causing the workout page to not display workouts in some cases. -
pushpress-integration/tags/1.5.12/templates/frontend/shortcode_workouts.php
r1576771 r1580671 20 20 <?php foreach ($workouts as $key => $workout): ?> 21 21 <h2><?php echo $workout['track_name']; ?></h2> 22 23 22 24 <div class="wp-pushpress-list"> 23 <?php if (count($workout->data) > 0): ?> 24 <?php foreach ($workout->data as $key => $item): ?> 25 <?php if (count($workout['data']) > 0): ?> 26 27 <?php foreach ($workout['data'] as $key => $item): ?> 25 28 <div class="item-other"> 26 29 <h3><?php echo $item['type']; ?> -
pushpress-integration/trunk/inc/wp_pushpress_model.php
r1576771 r1580671 417 417 } 418 418 419 419 420 420 $results = array(); 421 421 foreach ($tracks->data as $key => $track) { … … 437 437 set_transient("pp_track_workouts_" . $track->uuid, $workouts, 600); 438 438 } 439 439 440 440 $results[$key]['workouts'] = $this->filter_data_by_date($workouts, $timeNow, $client, $public_setting); 441 441 -
pushpress-integration/trunk/pushpress.php
r1576771 r1580671 2 2 /** 3 3 * @package WP-PushPress 4 * @version 1.5.1 14 * @version 1.5.12 5 5 */ 6 6 /* … … 9 9 Description: Easily integrate your workouts, calendar, products, membership plans, events and more with your Wordpress blog! This plugin is a free add-on for existing PushPress clients. See https://pushpress.com for more info. 10 10 Author: PushPress, Inc 11 Version: 1.5.1 111 Version: 1.5.12 12 12 Author URI: https://pushpress.com 13 13 */ 14 14 define('PUSHPRESS_LOCAL', FALSE); 15 15 define('PUSHPRESS_DEV', FALSE); 16 define( 'PP_PLUGIN_VERSION', '1.5.1 1');16 define( 'PP_PLUGIN_VERSION', '1.5.12'); 17 17 define( 'PUSHPRESS_ERROR_REPORT', 0 ); 18 18 define( 'PUSHPRESS_BUTTON_CLASS', 'pushpress-button-class-' . rand(0, 10000)); -
pushpress-integration/trunk/readme.txt
r1576771 r1580671 126 126 = 1.5.11 = 127 127 Found an issue affecting *some* PHP versions / hosting providers in how they were treating the data being returned from our API. This was causing white screens of death on our pages. Fixed the issue for those affected. 128 129 = 1.5.12 = 130 Found an issue causing the workout page to not display workouts in some cases. -
pushpress-integration/trunk/templates/frontend/shortcode_workouts.php
r1576771 r1580671 20 20 <?php foreach ($workouts as $key => $workout): ?> 21 21 <h2><?php echo $workout['track_name']; ?></h2> 22 23 22 24 <div class="wp-pushpress-list"> 23 <?php if (count($workout->data) > 0): ?> 24 <?php foreach ($workout->data as $key => $item): ?> 25 <?php if (count($workout['data']) > 0): ?> 26 27 <?php foreach ($workout['data'] as $key => $item): ?> 25 28 <div class="item-other"> 26 29 <h3><?php echo $item['type']; ?>
Note: See TracChangeset
for help on using the changeset viewer.