Changeset 2248
- Timestamp:
- 2008-07-25 01:34:02 (6 weeks ago)
- Files:
-
- 1 modified
-
trunk/htdocs/system/admin/users_items.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/htdocs/system/admin/users_items.php
r2179 r2248 31 31 } 32 32 } 33 34 printf( _t( 'was last seen %1$s at %2$s and currently has %3$s'), 33 34 $string = 'was last seen %1$s at %2$s'; 35 if(Posts::count_by_author( $user->id, Post::status('any') ) != 0) { 36 $string .= ' and currently has %3$s'; 37 } 38 39 printf( _t( $string ), 35 40 "<strong>" . date('M j, Y', strtotime($user->info->authenticate_time)) . "</strong>", 36 41 "<strong>" . date('H:i', strtotime($user->info->authenticate_time)) . "</strong>", 37 42 Format::and_list( $message_bits ) 38 43 ); 44 45 39 46 } 40 47 ?>
