12 lines
328 B
PHP
Executable File
12 lines
328 B
PHP
Executable File
<?php
|
|
|
|
|
|
if(!defined('IN_DISCUZ')) {
|
|
exit('Access Denied');
|
|
}
|
|
|
|
$pbforums = C::t('#thread_across#across_pbforums')->fetch_by_uid( $_G['uid'] );
|
|
|
|
$forums = DB::fetch_all('select f.fid,name,icon from %t as f join %t as ff on f.fid=ff.fid where f.fid in(%n)', array('forum_forum', 'forum_forumfield', $pbforums['fids']), 'fid');
|
|
|
|
?>
|