Guest User

Untitled

a guest
May 23rd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. foreach($this->children[ $forum_data['id'] ] as $idx => $data) {
  2. if ( $std->check_perms($data['read_perms']) != TRUE ) {
  3. continue;
  4. }
  5. $children[] = "<a href='{$ibforums->base_url}showforum={$data['id']}'>{$data['name']}</a>";
  6.  
  7. ...
  8.  
  9. }
  10.  
  11. ...
  12.  
  13. $subs = implode(", ", $children);
  14.  
  15. return $this->html->SubForumRow($forum_data, $subs);
Add Comment
Please, Sign In to add comment