Advertisement
Guest User

postbit

a guest
Sep 19th, 2014
328
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.00 KB | None | 0 0
  1. {$ignore_bit}
  2. <a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>
  3. <div class="post {$unapproved_shade}" style="{$post_visibility}" id="post_{$post['pid']}">
  4. <div class="post_author">
  5.     {$post['useravatar']}
  6.     <div class="author_information">
  7.             <strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
  8.             <span class="smalltext">
  9.                 {$post['usertitle']}<br />
  10.                 {$post['userstars']}
  11.                 {$post['groupimage']}
  12.             </span>
  13.     </div>
  14.     <div class="author_statistics">
  15.         {$post['user_details']}
  16.     </div>
  17. </div>
  18. <div class="post_content">
  19.     <div class="post_head" title="{$post['subject_title']}">
  20.         {$post['posturl']}
  21.         {$post['icon']}
  22.         <span class="post_date">{$post['postdate']} <span class="post_edit" id="edited_by_{$post['pid']}">{$post['editedmsg']}</span></span>
  23.     </div>
  24.     <div class="post_body scaleimages" id="pid_{$post['pid']}">
  25.       <script type="text/javascript">
  26.         <!--
  27.             lang.ratings_update_error = "{$lang->ratings_update_error}";
  28.         // -->
  29.         </script>
  30.       <strong class="float_left" style="padding-right: 10px;">{$lang->thread_rating}</strong>
  31.       <div class="inline_rating">
  32.             <ul class="star_rating{$not_rated}" id="rating_thread_{$thread['tid']}">
  33.                 <li style="width: {$thread['width']}%" class="current_rating" id="current_rating_{$thread['tid']}">{$ratingvotesav}</li>
  34.                 <li><a class="one_star" title="{$lang->one_star}" href="./ratethread.php?tid={$thread['tid']}&amp;rating=1&amp;my_post_key={$mybb->post_code}">1</a></li>
  35.                 <li><a class="two_stars" title="{$lang->two_stars}" href="./ratethread.php?tid={$thread['tid']}&amp;rating=2&amp;my_post_key={$mybb->post_code}">2</a></li>
  36.                 <li><a class="three_stars" title="{$lang->three_stars}" href="./ratethread.php?tid={$thread['tid']}&amp;rating=3&amp;my_post_key={$mybb->post_code}">3</a></li>
  37.                 <li><a class="four_stars" title="{$lang->four_stars}" href="./ratethread.php?tid={$thread['tid']}&amp;rating=4&amp;my_post_key={$mybb->post_code}">4</a></li>
  38.                 <li><a class="five_stars" title="{$lang->five_stars}" href="./ratethread.php?tid={$thread['tid']}&amp;rating=5&amp;my_post_key={$mybb->post_code}">5</a></li>
  39.             </ul>
  40.         </div><br />
  41.         {$post['message']}
  42.     </div>
  43.     {$post['attachments']}
  44.     {$post['signature']}
  45.     <div class="post_meta" id="post_meta_{$post['pid']}">
  46.         {$post['iplogged']}
  47.     </div>
  48. </div>
  49. <div class="post_controls">
  50.     <div class="postbit_buttons author_buttons float_left">
  51.         {$post['button_email']}{$post['button_pm']}{$post['button_www']}{$post['button_find']}{$post['button_rep']}
  52.     </div>
  53.     <div class="postbit_buttons post_management_buttons float_right">
  54.         {$post['button_edit']}{$post['button_quickdelete']}{$post['button_quickrestore']}{$post['button_quote']}{$post['button_multiquote']}{$post['button_report']}{$post['returntotop']}{$post['button_warn']}{$post['button_purgespammer']}{$post['button_reply_pm']}{$post['button_replyall_pm']}{$post['button_forward_pm']}{$post['button_delete_pm']}
  55.     </div>
  56. </div>
  57. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement