Changeset 2177 for trunk/bb-templates/kakumei/profile.php
- Timestamp:
- 06/13/2009 05:42:28 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/bb-templates/kakumei/profile.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bb-templates/kakumei/profile.php
r2144 r2177 39 39 <?php foreach ($posts as $bb_post) : $topic = get_topic( $bb_post->topic_id ) ?> 40 40 <li<?php alt_class('replies'); ?>> 41 <a href="<?php topic_link(); ?>"><?php topic_title(); ?></a> 42 <?php if ( $user->ID == bb_get_current_user_info( 'id' ) ) printf(__('You last replied: %s ago .'), bb_get_post_time()); else printf(__('User last replied: %s ago.'), bb_get_post_time()); ?>41 <a href="<?php topic_link(); ?>"><?php topic_title(); ?></a> - 42 <?php if ( $user->ID == bb_get_current_user_info( 'id' ) ) printf(__('You last replied: %s ago'), bb_get_post_time()); else printf(__('User last replied: %s ago'), bb_get_post_time()); ?> | 43 43 44 44 <span class="freshness"><?php … … 46 46 printf(__('Most recent reply: %s ago'), get_topic_time()); 47 47 else 48 _e('No replies since .');48 _e('No replies since'); 49 49 ?></span> 50 50 </li> … … 64 64 <?php foreach ($topics as $topic) : ?> 65 65 <li<?php alt_class('topics'); ?>> 66 <a href="<?php topic_link(); ?>"><?php topic_title(); ?></a> 67 <?php printf(__('Started: %s ago'), get_topic_start_time()); ?> 66 <a href="<?php topic_link(); ?>"><?php topic_title(); ?></a> - 67 <?php printf(__('Started: %s ago'), get_topic_start_time()); ?> | 68 68 69 69 <span class="freshness"><?php 70 70 if ( get_topic_start_time( 'timestamp' ) < get_topic_time( 'timestamp' ) ) 71 printf(__('Most recent reply: %s ago .'), get_topic_time());71 printf(__('Most recent reply: %s ago'), get_topic_time()); 72 72 else 73 73 _e('No replies.');
Note: See TracChangeset
for help on using the changeset viewer.