Advertisement
MarioBlack

BUSCAS ESTO

May 20th, 2019
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. // Show the member's primary group (like 'Administrator') if they have one.
  2. if (!empty($message['member']['group']))
  3. echo '
  4. <li class="membergroup">', $message['member']['group'], '</li>';
  5.  
  6. // Don't show these things for guests.
  7. if (!$message['member']['is_guest'])
  8. {
  9. // Show the post group if and only if they have no other group or the option is on, and they are in a post group.
  10. if ((empty($settings['hide_post_group']) || $message['member']['group'] == '') && $message['member']['post_group'] != '')
  11. echo '
  12. <li class="postgroup">', $message['member']['post_group'], '</li>';
  13. echo '
  14. <li class="stars">', $message['member']['group_stars'], '</li>';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement