Changeset 705684
- Timestamp:
- 04/30/2013 12:37:02 AM (13 years ago)
- Location:
- runkeeper-activity-feed/trunk
- Files:
-
- 1 added
- 3 edited
-
assets-wp-repo (added)
-
readme.txt (modified) (2 diffs)
-
runkeeper-wordpress-activity-feed.php (modified) (1 diff)
-
runkeeper-wordpress-records-widget.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
runkeeper-activity-feed/trunk/readme.txt
r705196 r705684 5 5 Requires at least: 3.5 6 6 Tested up to: 3.5.1 7 Stable tag: 1.6. 07 Stable tag: 1.6.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 59 59 == Changelog == 60 60 61 = 1.6.2 = 62 * BUG FIX: Correct Notice in Widget 63 61 64 = 1.6.0 = 62 65 * NEW FEATURE: Average Pace Options for Posts -
runkeeper-activity-feed/trunk/runkeeper-wordpress-activity-feed.php
r705196 r705684 6 6 Description: A plugin to automatically draft posts of all your Runkeeper Activities. 7 7 Author: A. Kai Armstrong 8 Version: 1.6. 08 Version: 1.6.2 9 9 Author URI: http://www.kaiarmstrong.com 10 10 */ -
runkeeper-activity-feed/trunk/runkeeper-wordpress-records-widget.php
r703569 r705684 62 62 if ($rkRecordsFeed) { 63 63 $i = 0; 64 while ( $rkRecordsFeed[$i]->activity_type!= NULL) {64 while ( isset($rkRecordsFeed[$i]->activity_type) != NULL) { 65 65 if ($rkRecordsFeed[$i]->activity_type == $activity_type) { 66 66 $x = 0; … … 80 80 break; 81 81 } 82 83 82 } 84 83 } 85 $i++; 84 $i++; 86 85 } 87 86 set_transient( 'toz-records-content-' . $activity_type, $toz_records_content, HOUR_IN_SECONDS ); … … 139 138 } 140 139 } 140 } 141 141 $i++; 142 }143 142 } 144 143
Note: See TracChangeset
for help on using the changeset viewer.