Plugin Directory

Changeset 156124


Ignore:
Timestamp:
09/18/2009 11:38:38 PM (17 years ago)
Author:
lizardwuff
Message:
  • added a limit to 20 posts on friendspage
  • changed "Contributors" in readme to my wordpress username
Location:
wpfriends/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wpfriends/trunk/readme.txt

    r156039 r156124  
    11=== Plugin Name ===
    2 Contributors: lizard
     2Contributors: lizardwuff
    33Tags: livejournal, friends
    44Requires at least: 2.8.4
  • wpfriends/trunk/wpfriends.php

    r156039 r156124  
    6666  arsort ($sortarr);
    6767
     68  $i = 0;
    6869  // display data
    6970  foreach (array_keys($sortarr) as $entry)
    7071  {
     72    if ($i++ == 20) break;
    7173    $entry = $entries[$entry];
    7274    echo '<table class="widefat fixed" cellspacing="0">';
Note: See TracChangeset for help on using the changeset viewer.