Plugin Directory

Changeset 705684


Ignore:
Timestamp:
04/30/2013 12:37:02 AM (13 years ago)
Author:
phikai
Message:

Clean up NOTICE

Location:
runkeeper-activity-feed/trunk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • runkeeper-activity-feed/trunk/readme.txt

    r705196 r705684  
    55Requires at least: 3.5
    66Tested up to: 3.5.1
    7 Stable tag: 1.6.0
     7Stable tag: 1.6.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5959== Changelog ==
    6060
     61= 1.6.2 =
     62* BUG FIX: Correct Notice in Widget
     63
    6164= 1.6.0 =
    6265* NEW FEATURE: Average Pace Options for Posts
  • runkeeper-activity-feed/trunk/runkeeper-wordpress-activity-feed.php

    r705196 r705684  
    66Description: A plugin to automatically draft posts of all your Runkeeper Activities.
    77Author: A. Kai Armstrong
    8 Version: 1.6.0
     8Version: 1.6.2
    99Author URI: http://www.kaiarmstrong.com
    1010*/
  • runkeeper-activity-feed/trunk/runkeeper-wordpress-records-widget.php

    r703569 r705684  
    6262            if ($rkRecordsFeed) {
    6363                $i = 0;
    64                 while ($rkRecordsFeed[$i]->activity_type != NULL) {
     64                while ( isset($rkRecordsFeed[$i]->activity_type) != NULL) {
    6565                    if ($rkRecordsFeed[$i]->activity_type == $activity_type) {
    6666                        $x = 0;
     
    8080                                break;
    8181                            }
    82                    
    8382                        }
    8483                    }
    85                     $i++;   
     84                    $i++;
    8685                }
    8786                set_transient( 'toz-records-content-' . $activity_type, $toz_records_content, HOUR_IN_SECONDS );
     
    139138                        }
    140139                    }
     140                }
    141141                $i++;
    142                 }
    143142            }
    144143       
Note: See TracChangeset for help on using the changeset viewer.