Changeset 479751
- Timestamp:
- 12/23/2011 11:38:29 AM (14 years ago)
- File:
-
- 1 edited
-
wp-whos-online/trunk/wp-whos-online.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-whos-online/trunk/wp-whos-online.php
r479261 r479751 4 4 Plugin URI: http://www.plymouth.edu/ 5 5 Description: Sidebar widget to log when a user was last online 6 Version: 0. 5.16 Version: 0.6-dev 7 7 Author: Adam Backstrom 8 8 Author URI: http://blogs.bwerp.net/ … … 140 140 $users = wpwhosonline_recents(); 141 141 142 $html = '<ul class="wpwhosonline-list">'; 142 $html = ''; 143 143 144 foreach( $users as $user ) { 144 145 $last_online_ts = get_user_meta( $user->ID, 'wpwhosonline_timestamp', true ); … … 150 151 $html .= $item; 151 152 } 152 $html .= '</ul>';153 153 154 154 echo $html; … … 205 205 echo $before_widget . $before_title . "Users" . $after_title; 206 206 ?> 207 <ul >207 <ul class="wpwhosonline-list"> 208 208 <?php wpwhosonline_list_authors(); ?> 209 209 </ul>
Note: See TracChangeset
for help on using the changeset viewer.