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