'0' AND a.fid=f.fid WHERE f.status='1' ORDER BY f.type, f.displayorder" : "SELECT f.fid, f.type, f.name, f.fup, f.status, ff.password, ff.redirect, ff.viewperm, ff.postperm, ff.threadtypes, ff.threadsorts FROM ".DB::table('forum_forum')." f LEFT JOIN ".DB::table('forum_forumfield')." ff USING(fid) WHERE f.status='1' ORDER BY f.type, f.displayorder"; $query = DB::query($sql); while($forum = DB::fetch($query)) { if($forum['redirect'] || $forum['password']) { continue; } if(!$forum['viewperm'] || ($forum['viewperm'] && forumperm($forum['viewperm']))) { $forum['name'] = strip_tags($forum['name']); if($forum['threadsorts']) { $forum['threadsorts'] = unserialize($forum['threadsorts']); foreach($forum['threadsorts']['types'] as $k => $v) { $forum['threadsorts']['types'][$k] = strip_tags($v); } $forum['threadsorts'] = mobile_core::getvalues($forum['threadsorts'], array('required', 'types')); } if($forum['threadtypes']) { $forum['threadtypes'] = unserialize($forum['threadtypes']); $unsetthreadtype = false; if($_G['adminid'] == 3 && strpos($forum['moderators'], $_G['username']) === false) { $unsetthreadtype = true; } if($_G['adminid'] == 0) { $unsetthreadtype = true; } if($unsetthreadtype) { foreach ($forum['threadtypes']['moderators'] AS $k => $v) { if(!empty($v)) { unset($forum['threadtypes']['types'][$k]); } } } $flag = 0; foreach($forum['threadtypes']['types'] as $k => $v) { $forum['threadtypes']['types'][$k] = strip_tags($v); if($k == 0) { $flag = 1; } } if($flag == 1) { krsort($forum['threadtypes']['types']); } $forum['threadtypes'] = mobile_core::getvalues($forum['threadtypes'], array('required', 'types')); } $forums[] = mobile_core::getvalues($forum, array('fid', 'type', 'name', 'fup', 'viewperm', 'postperm', 'status', 'threadsorts', 'threadtypes')); } } $variable['forums'] = $forums; mobile_core::result(mobile_core::variable($variable)); } function output() {} } ?>