- Timestamp:
- 08/10/10 02:25:53 (22 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/1.5/content/plugins/bookmarking/templates/bookmarking_post.php
r1985 r2089 53 53 </div> 54 54 55 <div class="show_post_author_date"> 56 <?php echo " " . $h->lang["bookmarking_post_posted_by"] . " <a href='" . $h->url(array('user' => $user->name)) . "'>" . $user->name . "</a>"; ?> 55 <div class="show_post_author_date"> 56 <?php echo " " . $h->lang["bookmarking_post_posted_by"] . " "; ?> 57 58 <?php 59 if ($user->name) 60 { 61 echo "<a href='" . $h->url(array('user' => $user->name)) . "'>" . $user->name . "</a>"; 62 } 63 else 64 { 65 echo $h->lang['main_anonymous']; 66 } 67 ?> 68 57 69 <?php echo time_difference(unixtimestamp($h->post->date), $h->lang) . " " . $h->lang["bookmarking_post_ago"]; ?> 58 70 <?php $h->pluginHook('show_post_author_date'); ?>