/\\\$memberformula\['(\w+?)'\]/", $formula, $a); $profilefields = array(); foreach($a[1] as $field) { switch($field) { case 'regdate': $formula = preg_replace_callback("/\{(\d{4})\-(\d{1,2})\-(\d{1,2})\}/", 'formulaperm_callback_123', $formula); case 'regday': break; case 'regip': case 'lastip': $formula = preg_replace("/\{([\d\.]+?)\}/", "'\\1'", $formula); $formula = preg_replace('/(\$memberformula\[\'(regip|lastip)\'\])\s*=+\s*\'([\d\.]+?)\'/', "strpos(\\1, '\\3')===0", $formula); case 'buyercredit': case 'sellercredit': space_merge($_G['member'], 'status');break; case substr($field, 0, 5) == 'field': space_merge($_G['member'], 'profile'); $profilefields[] = $field;break; } } $memberformula = array(); if($_G['uid']) { $memberformula = $_G['member']; if(in_array('regday', $a[1])) { $memberformula['regday'] = intval((TIMESTAMP - $memberformula['regdate']) / 86400); } if(in_array('regdate', $a[1])) { $memberformula['regdate'] = date('Y-m-d', $memberformula['regdate']); } $memberformula['lastip'] = $memberformula['lastip'] ? $memberformula['lastip'] : $_G['clientip']; } else { if(isset($memberformula['regip'])) { $memberformula['regip'] = $_G['clientip']; } if(isset($memberformula['lastip'])) { $memberformula['lastip'] = $_G['clientip']; } } } @eval("\$formulaperm = ($formula) ? TRUE : FALSE;"); if(!$formulaperm) { if(!$permmessage) { $language = lang('forum/misc'); $search = array('regdate', 'regday', 'regip', 'lastip', 'buyercredit', 'sellercredit', 'digestposts', 'posts', 'threads', 'oltime'); $replace = array($language['formulaperm_regdate'], $language['formulaperm_regday'], $language['formulaperm_regip'], $language['formulaperm_lastip'], $language['formulaperm_buyercredit'], $language['formulaperm_sellercredit'], $language['formulaperm_digestposts'], $language['formulaperm_posts'], $language['formulaperm_threads'], $language['formulaperm_oltime']); for($i = 1; $i <= 8; $i++) { $search[] = 'extcredits'.$i; $replace[] = $_G['setting']['extcredits'][$i]['title'] ? $_G['setting']['extcredits'][$i]['title'] : $language['formulaperm_extcredits'].$i; } if($profilefields) { loadcache(array('fields_required', 'fields_optional')); foreach($profilefields as $profilefield) { $search[] = $profilefield; $replace[] = !empty($_G['cache']['fields_optional']['field_'.$profilefield]) ? $_G['cache']['fields_optional']['field_'.$profilefield]['title'] : $_G['cache']['fields_required']['field_'.$profilefield]['title']; } } $i = 0;$_G['forum_usermsg'] = ''; foreach($search as $s) { if(in_array($s, array('digestposts', 'posts', 'threads', 'oltime', 'extcredits1', 'extcredits2', 'extcredits3', 'extcredits4', 'extcredits5', 'extcredits6', 'extcredits7', 'extcredits8'))) { $_G['forum_usermsg'] .= strexists($formulatext, $s) ? '
   '.$replace[$i].': '.(@eval('return intval(getuserprofile(\''.$s.'\'));')) : ''; } elseif(in_array($s, array('regdate', 'regip', 'regday'))) { $_G['forum_usermsg'] .= strexists($formulatext, $s) ? '
   '.$replace[$i].': '.(@eval('return $memberformula[\''.$s.'\'];')) : ''; } $i++; } $search = array_merge($search, array('and', 'or', '>=', '<=', '==')); $replace = array_merge($replace, array('  '.$language['formulaperm_and'].'  ', '  '.$language['formulaperm_or'].'  ', '≥', '≤', '=')); $_G['forum_formulamessage'] = str_replace($search, $replace, $formulatext); } else { $_G['forum_formulamessage'] = $permmessage; } if(!$permmessage) { showmessage('forum_permforum_nopermission', NULL, array('formulamessage' => $_G['forum_formulamessage'], 'usermsg' => $_G['forum_usermsg']), array('login' => 1)); } else { showmessage('forum_permforum_nopermission_custommsg', NULL, array('formulamessage' => $_G['forum_formulamessage']), array('login' => 1)); } } return TRUE; } function formulaperm_callback_123($matches) { return '\''.$matches[1].'-'.sprintf('%02d', $matches[2]).'-'.sprintf('%02d', $matches[3]).'\''; } function medalformulaperm($formula, $type) { global $_G; $formula = dunserialize($formula); $permmessage = $formula['message']; $formula = $formula['medal']; if(!empty($formula['usergroupallow']) && is_array($formula['usergroups']) && !in_array($_G['groupid'], $formula['usergroups'])) { loadcache('usergroups'); $message = array(); foreach($formula['usergroups'] as $groupid) { $message[] = $_G['cache']['usergroups'][$groupid]['grouptitle'].' '; } $_G['forum_formulamessage'] = implode(', ', $message); $_G['forum_usermsg'] = $_G['cache']['usergroups'][$_G['groupid']]['grouptitle']; return FALSE; } $formulatext = $formula[0]; $formula = $formula[1]; if(!$formula) { return FALSE; } if(strexists($formula, '$memberformula[')) { preg_match_all("/\\\$memberformula\['(\w+?)'\]/", $formula, $a); $profilefields = array(); foreach($a[1] as $field) { switch($field) { case 'regdate': $formula = preg_replace_callback("/\{(\d{4})\-(\d{1,2})\-(\d{1,2})\}/", 'medalformulaperm_callback_123', $formula); case 'regday': break; case 'regip': case 'lastip': $formula = preg_replace("/\{([\d\.]+?)\}/", "'\\1'", $formula); $formula = preg_replace('/(\$memberformula\[\'(regip|lastip)\'\])\s*=+\s*\'([\d\.]+?)\'/', "strpos(\\1, '\\3')===0", $formula); case 'buyercredit': case 'sellercredit': space_merge($_G['member'], 'status');break; case substr($field, 0, 5) == 'field': space_merge($_G['member'], 'profile'); $profilefields[] = $field;break; } } $memberformula = array(); if($_G['uid']) { $memberformula = $_G['member']; if(in_array('regday', $a[1])) { $memberformula['regday'] = intval((TIMESTAMP - $memberformula['regdate']) / 86400); } if(in_array('regdate', $a[1])) { $memberformula['regdate'] = date('Y-m-d', $memberformula['regdate']); } $memberformula['lastip'] = $memberformula['lastip'] ? $memberformula['lastip'] : $_G['clientip']; } else { if(isset($memberformula['regip'])) { $memberformula['regip'] = $_G['clientip']; } if(isset($memberformula['lastip'])) { $memberformula['lastip'] = $_G['clientip']; } } } @eval("\$formulaperm = ($formula) ? TRUE : FALSE;"); if(!$formulaperm || $type == 1) { if(!$permmessage) { $language = lang('forum/misc'); $search = array('regdate', 'regday', 'regip', 'lastip', 'buyercredit', 'sellercredit', 'digestposts', 'posts', 'threads', 'oltime'); $replace = array($language['formulaperm_regdate'], $language['formulaperm_regday'], $language['formulaperm_regip'], $language['formulaperm_lastip'], $language['formulaperm_buyercredit'], $language['formulaperm_sellercredit'], $language['formulaperm_digestposts'], $language['formulaperm_posts'], $language['formulaperm_threads'], $language['formulaperm_oltime']); for($i = 1; $i <= 8; $i++) { $search[] = 'extcredits'.$i; $replace[] = $_G['setting']['extcredits'][$i]['title'] ? $_G['setting']['extcredits'][$i]['title'] : $language['formulaperm_extcredits'].$i; } if($profilefields) { loadcache(array('fields_required', 'fields_optional')); foreach($profilefields as $profilefield) { $search[] = $profilefield; $replace[] = !empty($_G['cache']['fields_optional']['field_'.$profilefield]) ? $_G['cache']['fields_optional']['field_'.$profilefield]['title'] : $_G['cache']['fields_required']['field_'.$profilefield]['title']; } } $i = 0;$_G['forum_usermsg'] = ''; foreach($search as $s) { if(in_array($s, array('digestposts', 'posts', 'threads', 'oltime', 'extcredits1', 'extcredits2', 'extcredits3', 'extcredits4', 'extcredits5', 'extcredits6', 'extcredits7', 'extcredits8'))) { $_G['forum_usermsg'] .= strexists($formulatext, $s) ? '
   '.$replace[$i].': '.(@eval('return intval(getuserprofile(\''.$s.'\'));')) : ''; } elseif(in_array($s, array('regdate', 'regip'))) { $_G['forum_usermsg'] .= strexists($formulatext, $s) ? '
   '.$replace[$i].': '.(@eval('return $memberformula[\''.$s.'\'];')) : ''; } $i++; } $search = array_merge($search, array('and', 'or', '>=', '<=', '==')); $replace = array_merge($replace, array('  '.$language['formulaperm_and'].'  ', '  '.$language['formulaperm_or'].'  ', '≥', '≤', '=')); $permmessage = str_replace($search, $replace, $formulatext); } if(!$formulaperm) { $_G['forum_formulamessage'] = $permmessage; } return $permmessage; } elseif($formulaperm && $type == 2) { return FALSE; } return TRUE; } function medalformulaperm_callback_123($matches) { return '\''.$matches[1].'-'.sprintf('%02d', $matches[2]).'-'.sprintf('%02d', $matches[3]).'\''; } function groupexpiry($terms) { $terms = is_array($terms) ? $terms : dunserialize($terms); $groupexpiry = isset($terms['main']['time']) ? intval($terms['main']['time']) : 0; if(is_array($terms['ext'])) { foreach($terms['ext'] as $expiry) { if((!$groupexpiry && $expiry) || $expiry < $groupexpiry) { $groupexpiry = $expiry; } } } return $groupexpiry; } function typeselect($curtypeid = 0) { global $_G; if($threadtypes = $_G['forum']['threadtypes']) { $html = ''; return $html; } else { return ''; } } function updatemodworks($modaction, $posts = 1) { global $_G; $today = dgmdate(TIMESTAMP, 'Y-m-d'); if($_G['setting']['modworkstatus'] && $modaction && $posts) { $affect_rows = C::t('forum_modwork')->increase_count_posts_by_uid_modaction_dateline(1, $posts, $_G['uid'], $modaction, $today); if(!$affect_rows) { C::t('forum_modwork')->insert(array( 'uid' => $_G['uid'], 'modaction' => $modaction, 'dateline' => $today, 'count' => 1, 'posts' => $posts, )); } } } function buildbitsql($fieldname, $position, $value) { $t = " `$fieldname`=`$fieldname`"; if($value) { $t .= ' | '.setstatus($position, 1); } else { $t .= ' & '.setstatus($position, 0); } return $t.' '; } function showmessagenoperm($type, $fid, $formula = '') { global $_G; loadcache('usergroups'); if($formula) { $formula = dunserialize($formula); $permmessage = stripslashes($formula['message']); } $usergroups = $nopermgroup = $forumnoperms = array(); $nopermdefault = array( 'viewperm' => array(), 'getattachperm' => array(), 'postperm' => array(7), 'replyperm' => array(7), 'postattachperm' => array(7), ); $perms = array('viewperm', 'postperm', 'replyperm', 'getattachperm', 'postattachperm'); foreach($_G['cache']['usergroups'] as $gid => $usergroup) { $usergroups[$gid] = $usergroup['type']; $grouptype = $usergroup['type'] == 'member' ? 0 : 1; $nopermgroup[$grouptype][] = $gid; } if($fid == $_G['forum']['fid']) { $forum = $_G['forum']; } else { $forum = C::t('forum_forumfield')->fetch($fid); } foreach($perms as $perm) { $permgroups = explode("\t", $forum[$perm]); $membertype = $forum[$perm] ? array_intersect($nopermgroup[0], $permgroups) : TRUE; $forumnoperm = $forum[$perm] ? array_diff(array_keys($usergroups), $permgroups) : $nopermdefault[$perm]; foreach($forumnoperm as $groupid) { $nopermtype = $membertype && $groupid == 7 ? 'login' : ($usergroups[$groupid] == 'system' || $usergroups[$groupid] == 'special' ? 'none' : ($membertype ? 'upgrade' : 'none')); $forumnoperms[$fid][$perm][$groupid] = array($nopermtype, $permgroups); } } $v = $forumnoperms[$fid][$type][$_G['groupid']][0]; $gids = $forumnoperms[$fid][$type][$_G['groupid']][1]; $comma = $permgroups = ''; if(is_array($gids)) { foreach($gids as $gid) { if($gid && $_G['cache']['usergroups'][$gid]) { $permgroups .= $comma.$_G['cache']['usergroups'][$gid]['grouptitle']; $comma = ', '; } elseif($_G['setting']['verify']['enabled'] && substr($gid, 0, 1) == 'v') { $vid = substr($gid, 1); $permgroups .= $comma.$_G['setting']['verify'][$vid]['title']; $comma = ', '; } } } $custom = 0; if($permmessage) { $message = $permmessage; $custom = 1; } else { if($v) { $message = $type.'_'.$v.'_nopermission'; } else { $message = 'group_nopermission'; } } showmessage($message, NULL, array('fid' => $fid, 'permgroups' => $permgroups, 'grouptitle' => $_G['group']['grouptitle']), array('login' => 1), $custom); } function loadforum($fid = null, $tid = null) { global $_G; $tid = intval(isset($tid) ? $tid : getgpc('tid')); if(isset($fid)) { $fid = intval($fid); } else { $fid = getgpc('fid'); if(!$fid && getgpc('gid')) { $fid = intval(getgpc('gid')); } } if(isset($_G['forum']['fid']) && $_G['forum']['fid'] == $fid || isset($_G['thread']['tid']) && $_G['thread']['tid'] == $tid){ return null; } if(!empty($_GET['archiver'])) {//X1.5µÄArchiver¼æÈÝ if($fid) { dheader('location: archiver/?fid-'.$fid.'.html'); } elseif($tid) { dheader('location: archiver/?tid-'.$tid.'.html'); } else { dheader('location: archiver/'); } } if(defined('IN_ARCHIVER') && $_G['setting']['archiverredirect'] && !IS_ROBOT) { dheader('location: ../forum.php'.($_G['mod'] ? '?mod='.$_G['mod'].(!empty($_GET['fid']) ? '&fid='.$_GET['fid'] : (!empty($_GET['tid']) ? '&tid='.$_GET['tid'] : '')) : '')); } if($_G['setting']['forumpicstyle']) { $_G['setting']['forumpicstyle'] = dunserialize($_G['setting']['forumpicstyle']); empty($_G['setting']['forumpicstyle']['thumbwidth']) && $_G['setting']['forumpicstyle']['thumbwidth'] = 203; empty($_G['setting']['forumpicstyle']['thumbheight']) && $_G['setting']['forumpicstyle']['thumbheight'] = 0; } else { $_G['setting']['forumpicstyle'] = array('thumbwidth' => 203, 'thumbheight' => 0); } if($fid) { $fid = is_numeric($fid) ? intval($fid) : (!empty($_G['setting']['forumfids'][$fid]) ? $_G['setting']['forumfids'][$fid] : 0); } $modthreadkey = isset($_GET['modthreadkey']) && $_GET['modthreadkey'] == modauthkey($tid) ? $_GET['modthreadkey'] : ''; $_G['forum_auditstatuson'] = $modthreadkey ? true : false; $metadescription = $hookscriptmessage = ''; $adminid = $_G['adminid']; if(!empty($tid) || !empty($fid)) { if(!empty ($tid)) { $archiveid = !empty($_GET['archiveid']) ? intval($_GET['archiveid']) : null; $_G['thread'] = get_thread_by_tid($tid, $archiveid); $_G['thread']['allreplies'] = $_G['thread']['replies'] + $_G['thread']['comments']; if(!$_G['forum_auditstatuson'] && !empty($_G['thread']) && !($_G['thread']['displayorder'] >= 0 || (in_array($_G['thread']['displayorder'], array(-4,-3,-2)) && $_G['uid'] && $_G['thread']['authorid'] == $_G['uid']))) { $_G['thread'] = null; } $_G['forum_thread'] = & $_G['thread']; if(empty($_G['thread'])) { $fid = $tid = 0; } else { $fid = $_G['thread']['fid']; $tid = $_G['thread']['tid']; } } if($fid) { $forum = C::t('forum_forum')->fetch_info_by_fid($fid); } if($forum) { if($_G['uid']) { if($_G['member']['accessmasks']) { $query = C::t('forum_access')->fetch_all_by_fid_uid($fid, $_G['uid']); $forum['allowview'] = $query[0]['allowview']; $forum['allowpost'] = $query[0]['allowpost']; $forum['allowreply'] = $query[0]['allowreply']; $forum['allowgetattach'] = $query[0]['allowgetattach']; $forum['allowgetimage'] = $query[0]['allowgetimage']; $forum['allowpostattach'] = $query[0]['allowpostattach']; $forum['allowpostimage'] = $query[0]['allowpostimage']; } if($adminid == 3) { $forum['ismoderator'] = C::t('forum_moderator')->fetch_uid_by_fid_uid($fid, $_G['uid']); } } $forum['ismoderator'] = !empty($forum['ismoderator']) || $adminid == 1 || $adminid == 2 ? 1 : 0; $fid = $forum['fid']; $gorup_admingroupids = $_G['setting']['group_admingroupids'] ? dunserialize($_G['setting']['group_admingroupids']) : array('1' => '1'); if($forum['status'] == 3) { if(!empty($forum['moderators'])) { $forum['moderators'] = dunserialize($forum['moderators']); } else { require_once libfile('function/group'); $forum['moderators'] = update_groupmoderators($fid); } if($_G['uid'] && $_G['adminid'] != 1) { $forum['ismoderator'] = !empty($forum['moderators'][$_G['uid']]) ? 1 : 0; $_G['adminid'] = 0; if($forum['ismoderator'] || $gorup_admingroupids[$_G['groupid']]) { $_G['adminid'] = $_G['adminid'] ? $_G['adminid'] : 3; if(!empty($gorup_admingroupids[$_G['groupid']])) { $forum['ismoderator'] = 1; $_G['adminid'] = 2; } $group_userperm = dunserialize($_G['setting']['group_userperm']); if(is_array($group_userperm)) { $_G['group'] = array_merge($_G['group'], $group_userperm); $_G['group']['allowmovethread'] = $_G['group']['allowcopythread'] = $_G['group']['allowedittypethread']= 0; } } } } foreach(array('threadtypes', 'threadsorts', 'creditspolicy', 'modrecommend') as $key) { $forum[$key] = !empty($forum[$key]) ? dunserialize($forum[$key]) : array(); if(!is_array($forum[$key])) { $forum[$key] = array(); } } if($forum['threadtypes']['types']) { safefilter($forum['threadtypes']['types']); } if($forum['threadtypes']['options']['name']) { safefilter($forum['threadtypes']['options']['name']); } if($forum['threadsorts']['types']) { safefilter($forum['threadsorts']['types']); } if($forum['status'] == 3) { $_G['isgroupuser'] = 0; $_G['basescript'] = 'group'; if($forum['level'] == 0) { $levelinfo = C::t('forum_grouplevel')->fetch_by_credits($forum['commoncredits']); $levelid = $levelinfo['levelid']; $forum['level'] = $levelid; C::t('forum_forum')->update_group_level($levelid, $fid); } if($forum['level'] != -1) { loadcache('grouplevels'); $grouplevel = $_G['grouplevels'][$forum['level']]; if(!empty($grouplevel['icon'])) { $valueparse = parse_url($grouplevel['icon']); if(!isset($valueparse['host'])) { $grouplevel['icon'] = $_G['setting']['attachurl'].'common/'.$grouplevel['icon']; } } } $group_postpolicy = $grouplevel['postpolicy']; if(is_array($group_postpolicy)) { $forum = array_merge($forum, $group_postpolicy); } $forum['allowfeed'] = $_G['setting']['group_allowfeed']; if($_G['uid']) { if(!empty($forum['moderators'][$_G['uid']])) { $_G['isgroupuser'] = 1; } else { $groupuserinfo = C::t('forum_groupuser')->fetch_userinfo($_G['uid'], $fid); $_G['isgroupuser'] = $groupuserinfo['level']; if($_G['isgroupuser'] <= 0 && empty($forum['ismoderator'])) { $_G['group']['allowrecommend'] = $_G['cache']['usergroup_'.$_G['groupid']]['allowrecommend'] = 0; $_G['group']['allowcommentpost'] = $_G['cache']['usergroup_'.$_G['groupid']]['allowcommentpost'] = 0; $_G['group']['allowcommentitem'] = $_G['cache']['usergroup_'.$_G['groupid']]['allowcommentitem'] = 0; $_G['group']['raterange'] = $_G['cache']['usergroup_'.$_G['groupid']]['raterange'] = array(); $_G['group']['allowvote'] = $_G['cache']['usergroup_'.$_G['groupid']]['allowvote'] = 0; } else { $_G['isgroupuser'] = 1; } } } } } else { $fid = 0; } } $_G['fid'] = $fid; $_G['tid'] = $tid; $_G['forum'] = &$forum; $_G['current_grouplevel'] = &$grouplevel; if(empty($_G['uid'])) { $_G['group']['allowpostactivity'] = $_G['group']['allowpostpoll'] = $_G['group']['allowvote'] = $_G['group']['allowpostreward'] = $_G['group']['allowposttrade'] = $_G['group']['allowpostdebate'] = $_G['group']['allowpostrushreply'] = 0; } if(!empty($_G['forum']['widthauto'])) { $_G['widthauto'] = $_G['forum']['widthauto']; } } function get_thread_by_tid($tid, $forcetableid = null) { global $_G; $ret = array(); if(!is_numeric($tid)) { return $ret; } loadcache('threadtableids'); $threadtableids = array(0); if(!empty($_G['cache']['threadtableids'])) { if($forcetableid === null || ($forcetableid > 0 && !in_array($forcetableid, $_G['cache']['threadtableids']))) { $threadtableids = array_merge($threadtableids, $_G['cache']['threadtableids']); } else { $threadtableids = array(intval($forcetableid)); } } $threadtableids = array_unique($threadtableids); foreach($threadtableids as $tableid) { $tableid = $tableid > 0 ? $tableid : 0; $ret = C::t('forum_thread')->fetch($tid, $tableid); if($ret) { $ret['threadtable'] = C::t('forum_thread')->get_table_name($tableid); $ret['threadtableid'] = $tableid; $ret['posttable'] = 'forum_post'.($ret['posttableid'] ? '_'.$ret['posttableid'] : ''); break; } } if(!is_array($ret)) { $ret = array(); } elseif($_G['setting']['optimizeviews']) { if(($row = C::t('forum_threadaddviews')->fetch($tid))) { $ret['addviews'] = intval($row['addviews']); $ret['views'] += $ret['addviews']; } } return $ret; } function get_post_by_pid($pid, $fields = '*', $addcondiction = '', $forcetable = null) { global $_G; $ret = array(); if(!is_numeric($pid)) { return $ret; } loadcache('posttable_info'); $posttableids = array(0); if($_G['cache']['posttable_info']) { if(isset($forcetable)) { if(is_numeric($forcetable) && array_key_exists($forcetable, $_G['cache']['posttable_info'])) { $posttableids[] = $forcetable; } elseif(substr($forcetable, 0, 10) == 'forum_post') { $posttableids[] = $forcetable; } } else { $posttableids = array_keys($_G['cache']['posttable_info']); } } foreach ($posttableids as $id) { $table = empty($id) ? 'forum_post' : (is_numeric($id) ? 'forum_post_'.$id : $id); $ret = C::t('forum_post')->fetch_by_pid_condition($id, $pid, $addcondiction, $fields); if($ret) { $ret['posttable'] = $table; break; } } if(!is_array($ret)) { $ret = array(); } return $ret; } function get_post_by_tid_pid($tid, $pid) { static $postlist = array(); if(empty($postlist[$pid])) { $postlist[$pid] = C::t('forum_post')->fetch('tid:'.$tid, $pid, false); if($postlist[$pid] && $postlist[$pid]['tid'] == $tid) { $user = getuserbyuid($postlist[$pid]['authorid']); $postlist[$pid]['adminid'] = $user['adminid']; } else { $postlist[$pid] = array(); } } return $postlist[$pid]; } function set_rssauth() { global $_G; if($_G['setting']['rssstatus'] && $_G['uid']) { $auth = authcode($_G['uid']."\t".($_G['fid'] ? $_G['fid'] : ''). "\t".substr(md5($_G['member']['password']), 0, 8), 'ENCODE', md5($_G['config']['security']['authkey'])); } else { $auth = '0'; } $_G['rssauth'] = rawurlencode($auth); } function rssforumperm($forum) { $is_allowed = $forum['type'] != 'group' && (!$forum['viewperm'] || ($forum['viewperm'] && forumperm($forum['viewperm'], 7))); return $is_allowed; } function upload_icon_banner(&$data, $file, $type) { global $_G; $data['extid'] = empty($data['extid']) ? $data['fid'] : $data['extid']; if(empty($data['extid'])) return ''; if($data['status'] == 3 && $_G['setting']['group_imgsizelimit']) { $file['size'] > ($_G['setting']['group_imgsizelimit'] * 1024) && showmessage('file_size_overflow', '', array('size' => $_G['setting']['group_imgsizelimit'] * 1024)); } $upload = new discuz_upload(); $uploadtype = $data['status'] == 3 ? 'group' : 'common'; if(!$upload->init($file, $uploadtype, $data['extid'], $type)) { return false; } if(!$upload->save()) { if(!defined('IN_ADMINCP')) { showmessage($upload->errormessage()); } else { cpmsg($upload->errormessage(), '', 'error'); } } if($data['status'] == 3 && $type == 'icon') { require_once libfile('class/image'); $img = new image; $img->Thumb($upload->attach['target'], './'.$uploadtype.'/'.$upload->attach['attachment'], 200, 200, 'fixwr'); } return $upload->attach['attachment']; } function arch_multi($total, $perpage, $page, $link) { $pages = @ceil($total / $perpage) + 1; $pagelink = ''; if($pages > 1) { $pagelink .= lang('forum/archiver', 'page') . ": \n"; $pagestart = $page - 10 < 1 ? 1 : $page - 10; $pageend = $page + 10 >= $pages ? $pages : $page + 10; for($i = $pagestart; $i < $pageend; $i++) { $pagelink .= ($i == $page ? "[$i]" : "$i")." \n"; } } return $pagelink; } function loadarchiver($path) { global $_G; if(!$_G['setting']['archiver']) { require_once DISCUZ_ROOT . "./source/archiver/common/header.php"; echo '
'.lang('message', 'forum_archiver_disabled').'
'; require_once DISCUZ_ROOT . "./source/archiver/common/footer.php"; exit; } $filename = $path . '.php'; return DISCUZ_ROOT . "./source/archiver/$filename"; } function update_threadpartake($tid, $getsetarr = false) { global $_G; $setarr = array(); if($_G['uid'] && $tid) { if($_G['setting']['heatthread']['period']) { $partaked = C::t('forum_threadpartake')->fetch($tid, $_G['uid']); $partaked = $partaked['uid']; if(!$partaked) { C::t('forum_threadpartake')->insert(array('tid' => $tid, 'uid' => $_G['uid'], 'dateline' => TIMESTAMP)); $setarr = C::t('forum_thread')->increase($tid, array('heats' => 1), false, 0, $getsetarr); } } else { $setarr = C::t('forum_thread')->increase($tid, array('heats' => 1), false, 0, $getsetarr); } } if($getsetarr) { return $setarr; } } function getthreadcover($tid, $cover = 0, $getfilename = 0) { global $_G; if(empty($tid)) { return ''; } $coverpath = ''; $covername = 'threadcover/'.substr(md5($tid), 0, 2).'/'.substr(md5($tid), 2, 2).'/'.$tid.'.jpg'; if($getfilename) { return $covername; } if($cover) { $coverpath = ($cover < 0 ? $_G['setting']['ftp']['attachurl'] : $_G['setting']['attachurl']).'forum/'.$covername; } return $coverpath; } function convertunusedattach($aid, $tid, $pid) { if(!$aid) { return; } global $_G; $attach = C::t('forum_attachment_n')->fetch_by_aid_uid(127, $aid, $_G['uid']); if(!$attach) { return; } $attach = daddslashes($attach); $attach['tid'] = $tid; $attach['pid'] = $pid; C::t('forum_attachment_n')->insert('tid:'.$tid, $attach); C::t('forum_attachment')->update($attach['aid'], array('tid' => $tid, 'pid' => $pid, 'tableid' => getattachtableid($tid))); C::t('forum_attachment_unused')->delete($attach['aid']); } function updateattachtid($idtype, $ids, $oldtid, $newtid) { foreach(C::t('forum_attachment_n')->fetch_all_by_id('tid:'.$oldtid, $idtype, $ids) as $attach) { $attach['tid'] = $newtid; C::t('forum_attachment_n')->insert('tid:'.$newtid, $attach); } C::t('forum_attachment_n')->delete_by_id('tid:'.$oldtid, $idtype, $ids); C::t('forum_attachment')->update_by_id($idtype, $ids, $newtid); } function updatepost($data, $condition, $unbuffered = false, $posttableid = false) { return false; } function insertpost($data) { if(isset($data['tid'])) { $thread = C::t('forum_thread')->fetch($data['tid']); $tableid = $thread['posttableid']; if($thread['replies'] <= 0 && C::t('forum_sofa')->fetch($thread['tid'])) { C::t('forum_sofa')->delete($thread['tid']); } } else { $tableid = $data['tid'] = 0; } $pid = C::t('forum_post_tableid')->insert(array('pid' => null), true); $data = array_merge($data, array('pid' => $pid)); C::t('forum_post')->insert($tableid, $data); if($pid % 1024 == 0) { C::t('forum_post_tableid')->delete_by_lesspid($pid); } savecache('max_post_id', $pid); return $pid; } function threadmodstatus($string) { global $_G; $postmodperiods = periodscheck('postmodperiods', 0); if($postmodperiods) { $modnewthreads = $modnewreplies = 1; } else { $censormod = censormod($string); $modnewthreads = (!$_G['group']['allowdirectpost'] || $_G['group']['allowdirectpost'] == 1) && $_G['forum']['modnewposts'] || $censormod ? 1 : 0; $modnewreplies = (!$_G['group']['allowdirectpost'] || $_G['group']['allowdirectpost'] == 2) && $_G['forum']['modnewposts'] == 2 || $censormod ? 1 : 0; if($_G['forum']['status'] == 3) { $modnewthreads = !$_G['group']['allowgroupdirectpost'] || $_G['group']['allowgroupdirectpost'] == 1 || $censormod ? 1 : 0; $modnewreplies = !$_G['group']['allowgroupdirectpost'] || $_G['group']['allowgroupdirectpost'] == 2 || $censormod ? 1 : 0; } } $_G['group']['allowposturl'] = $_G['forum']['status'] != 3 ? $_G['group']['allowposturl'] : $_G['group']['allowgroupposturl']; if($_G['group']['allowposturl'] == 1) { if(!$postmodperiods) { $censormod = censormod($string); } if($censormod) { $modnewthreads = $modnewreplies = 1; } } return array($modnewthreads, $modnewreplies); } function threadpubsave($tid, $passapproval = false) { global $_G; if($_G['setting']['plugins']['func'][HOOKTYPE]['threadpubsave']) { $hookparam = func_get_args(); hookscript('threadpubsave', 'global', 'funcs', array('param' => $hookparam, 'step' => 'check'), 'threadpubsave'); } $thread = C::t('forum_thread')->fetch_by_tid_displayorder($tid, -4, '=', !$passapproval ? $_G['uid'] : null); if(!$thread) { return 0; } $threadpost = C::t('forum_post')->fetch_threadpost_by_tid_invisible($tid); $thread['message'] = $threadpost['message']; $modworksql = 0; $displayorder = 0; $dateline = $_G['timestamp']; $moderatepids = $saveposts = array(); $return = 1; list($modnewthreads) = threadmodstatus($thread['subject']."\t".$thread['message']); if($modnewthreads && $passapproval === false) { updatemoderate('tid', $tid); manage_addnotify('verifythread'); $displayorder = -2; $modworksql = 1; $return = -1; C::t('forum_post')->update_by_tid('tid:'.$tid, $tid, array('dateline' => $dateline), false, false, 1); } else { C::t('forum_post')->update_by_tid('tid:'.$tid, $tid, array('dateline' => $dateline, 'invisible' => '0'), false, false, 1); } C::t('forum_thread')->update($tid, array('displayorder'=>$displayorder, 'dateline'=>$_G['timestamp'], 'lastpost'=>$_G['timestamp'])); $posts = $thread['replies'] + 1; if($thread['replies']) { $saveposts = C::t('forum_post')->fetch_all_by_tid('tid:'.$tid, $tid, true, '', 0, 0, 0); foreach($saveposts as $post) { $dateline++; $invisible = 0; list(, $modnewreplies) = threadmodstatus($post['subject']."\t".$post['message']); if($modnewreplies) { $moderatepids[] = $post['pid']; $verifypost = true; $invisible = -2; $modworksql = 1; $return = -2; } C::t('forum_post')->update('tid:'.$tid, $post['pid'], array('dateline' => $dateline, 'invisible' => $invisible)); updatepostcredits('+', $thread['authorid'], 'reply', $thread['fid']); } } if($moderatepids) { updatemoderate('pid', $moderatepids); manage_addnotify('verifypost'); } updatepostcredits('+', $thread['authorid'], 'post', $thread['fid']); $attachcount = C::t('forum_attachment_n')->count_by_id('tid:'.$thread['tid'], 'tid', $thread['tid']); updatecreditbyaction('postattach', $thread['authorid'], array(), '', $attachcount, 1, $thread['fid']); if($_G['forum']['status'] == 3) { C::t('forum_groupuser')->update_counter_for_user($thread['authorid'], $thread['fid'], 1); } $subject = str_replace("\t", ' ', $thread['subject']); $lastpost = $thread['tid']."\t".$subject."\t".$thread['lastpost']."\t".$thread['lastposter']; C::t('forum_forum')->update($_G['fid'], array('lastpost' => $lastpost)); C::t('forum_forum')->update_forum_counter($thread['fid'], 1, $posts, $posts, $modworksql); if($_G['forum']['type'] == 'sub') { C::t('forum_forum')->update($_G['forum']['fup'], array('lastpost' => $lastpost)); } if($_G['setting']['plugins']['func'][HOOKTYPE]['threadpubsave']) { hookscript('threadpubsave', 'global', 'funcs', array('param' => $hookparam, 'step' => 'save', 'posts' => $saveposts), 'threadpubsave'); } return $return; } function getrelatecollection($tid, $all = false, &$num, &$more) { global $_G; $maxdisplay = $_G['setting']['collectionnum']; if(!$maxdisplay) return; $tidrelate = C::t('forum_collectionrelated')->fetch($tid); $ctids = explode("\t", $tidrelate['collection'], -1); $num = count($ctids); if(!$ctids || !$num) { $more = $num = 0; return null; } if($all !== true && $num > $maxdisplay) { $more = 1; } else { $maxdisplay = 0; } return C::t('forum_collection')->fetch_all($ctids, 'follownum', 'DESC', 0, $maxdisplay, '', $tid); } function set_atlist_cookie($uids) { global $_G; $atlist = $tmp = array(); $num = 0; $maxlist = 10; if(empty($uids)) { return; } $newnum = count($uids); if($newnum >= $maxlist) { $uids = array_slice($uids, 0, $maxlist); dsetcookie('atlist', implode(',', $uids), 86400 * 360); return; } if($_G['cookie']['atlist']) { $atlist = explode(',', $_G['cookie']['atlist']); foreach($atlist as $key => $val) { if(!in_array($val, $uids)) { $num++; if($num == ($maxlist - $newnum)) { break; } $tmp[$key] = $val; } } } dsetcookie('atlist', implode(',', $uids).($tmp ? ','.implode(',', $tmp) : ''), 86400 * 360); } function viewthread_is_search_referer() { $regex = "((http|https)\:\/\/)?"; $regex .= "([a-z]*.)?(toutiao.com|m.sm.cn|www.so.com|sogou.com|bing.com|baidu.com|google.com|google.cn|google.com.hk)(.[a-z]{2,3})?\/"; if(preg_match("/^$regex/", $_SERVER['HTTP_REFERER'])) { return true; } return false; } function stringtopic($value, $key = '', $force = false, $rlength = 0) { if($key === '') { $key = $value; } $basedir = !getglobal('setting/attachdir') ? './data/attachment' : getglobal('setting/attachdir'); $url = !getglobal('setting/attachurl') ? './data/attachment/' : getglobal('setting/attachurl'); $subdir1 = substr(md5($key), 0, 2); $subdir2 = substr(md5($key), 2, 2); $target = 'temp/'.$subdir1.'/'.$subdir2.'/'; $targetname = substr(md5($key), 8, 16).'.png'; discuz_upload::check_dir_exists('temp', $subdir1, $subdir2); if(!$force && file_exists($basedir.'/'.$target.$targetname)) { return $url.$target.$targetname; } $value = str_replace("\n", '', $value); $fontfile = $fontname = ''; $ttfenabled = false; $size = 10; $w = 130; $rowh = 25; $value = explode("\r", $value); if($rlength) { $temp = array(); foreach($value as $str) { $strlen = dstrlen($str); if($strlen > $rlength) { for($i = 0; $i < $strlen; $i++) { $sub = cutstr($str, $rlength, ''); $temp[] = $sub; $str = substr($str, strlen($sub)); $strlen = $strlen - $rlength; } } else { $temp[] = $str; } } $value = $temp; unset($temp); } if(function_exists('imagettftext')) { $fontroot = DISCUZ_ROOT.'./static/image/seccode/font/ch/'; $dirs = opendir($fontroot); while($entry = readdir($dirs)) { if($entry != '.' && $entry != '..' && in_array(strtolower(fileext($entry)), array('ttf', 'ttc'))) { $fontname = $entry; break; } } if(!empty($fontname)) { $fontfile = DISCUZ_ROOT.'./static/image/seccode/font/ch/'.$fontname; } if($fontfile) { if(strtoupper(CHARSET) != 'UTF-8') { include DISCUZ_ROOT.'./source/class/class_chinese.php'; $cvt = new Chinese(CHARSET, 'utf8'); $value = $cvt->Convert(implode("\r", $value)); $value = explode("\r", $value); } $ttfenabled = true; } } foreach($value as $str) { if($ttfenabled) { $box = imagettfbbox($size, 0, $fontfile, $str); $height = max($box[1], $box[3]) - min($box[5], $box[7]); $len = (max($box[2], $box[4]) - min($box[0], $box[6])); $rowh = max(array($height, $rowh)); } else { $len = strlen($str) * 12; } $w = max(array($len, $w)); } $h = $rowh * count($value) + count($value) * 2; $im = @imagecreate($w, $h); $background_color = imagecolorallocate($im, 255, 255, 255); $text_color = imagecolorallocate($im, 60, 60, 60); $h = $ttfenabled ? $rowh : 4; foreach($value as $str) { if($ttfenabled) { imagettftext($im, $size, 0, 0, $h, $text_color, $fontfile, $str); $h += 2; } else { imagestring($im, $size, 0, $h, $str, $text_color); } $h += $rowh; } imagepng($im, $basedir.'/'.$target.$targetname); imagedestroy($im); return $url.$target.$targetname; } function getreplybg($replybg = '') { global $_G; $style = ''; if($_G['setting']['allowreplybg']) { if($replybg) { $bgurl = $replybg; if(file_exists($_G['setting']['attachurl'].'common/'.$replybg)) { $bgurl = $_G['setting']['attachurl'].'common/'.$replybg; } } elseif($_G['setting']['globalreplybg']) { $bgurl = $_G['setting']['globalreplybg']; if(file_exists($_G['setting']['attachurl'].'common/'.$_G['setting']['globalreplybg'])) { $bgurl = $_G['setting']['attachurl'].'common/'.$_G['setting']['globalreplybg']; } } if($bgurl) { $style = ' style="background-image: url('.$bgurl.');"'; } } return $style; } function safefilter(&$data) { if(is_array($data)) { foreach($data as $k => $v) { safefilter($data[$k]); } } else { $data = str_replace(array( '[/color]', '[b]', '[/b]', '[s]', '[/s]', '[i]', '[/i]', '[u]', '[/u]', ), array( '', '', '', '', '', '', '', '', '' ), preg_replace(array( "/\[color=([#\w]+?)\]/i", "/\[color=((rgb|rgba)\([\d\s,]+?\))\]/i", ), array( "", "", ), strip_tags($data))); } } ?>Òª0¢h ffffÐú8"g> Ñ¡ÔñµÄÖ÷Ìâô?', 'admin_delthread_nopermission' => 'ÄúûÓÐɾ³ý´ËÖ÷ÌâȨÏÞ', 'admin_digest_add' => '¾«»ª', 'admin_digest_remove' => '½â³ý', 'admin_down' => 'ϳÁÖ÷Ìâ', 'admin_move' => 'ÒÆ¶¯Ö÷Ìâ', 'admin_move_hold' => '±£ÁôתÏò', 'admin_open' => '´ò¿ªÖ÷Ìâ', 'admin_select_piece' => 'Ñ¡ÔñÁË $modpostsnum ƪÌû×Ó', 'admin_target' => 'Ä¿±ê°æ¿é', 'admin_targettype' => 'Ä¿±ê·ÖÀà', 'admin_type_msg' => 'µ±Ç°°æ¿éÎÞ·ÖÀàÉèÖã¬ÇëÁªÏµ¹ÜÀíÔ±µ½ºǫ́ÉèÖÃÖ÷Ìâ·ÖÀà', 'admin_unrecommend' => '½â³ý', 'bump' => 'ÌáÉý', 'crimerecord' => 'Î¥¹æµÇ¼Ç', 'forum_recommend_image' => 'ͼƬ', 'forum_recommend_noimage' => '²»ÏÔʾ', 'forum_recommend_reducetitle' => '±êÌâ', 'recommend' => 'ÍÆ¼ö', 'thread_highlight' => '¸ßÁÁ', 'topicadmin_crime_delpost_nums' => 'Óû§ $crimeauthor Ìû×ÓÒѱ»Î¥¹æÉ¾³ý $crimenum ´Î', 'types' => '·ÖÀà', 'admin_banpost' => 'ÆÁ±Î', 'admin_delposts' => 'ɾ³ýÑ¡¶¨Ìû×Ó', 'admin_merge' => 'ºÏ²¢', 'admin_merge_tid' => 'ÌîдҪºÏ²¢µÄÖ÷Ìâ ID (tid)', 'admin_select_one_piece' => 'Ñ¡ÔñÁË 1 ƪÖ÷Ìâ', 'admin_split_comment' => '·Ö¸î →Ìîд¥ºÅ (Óà "," ¼ä¸ô)', 'admin_split_newsubject' => 'бêÌâ', 'admin_stamp_none' => 'ÎÞͼÕÂ', 'admin_stamp_select' => 'Ñ¡ÔñÖ÷ÌâͼÕÂ', 'admin_stamplist_current' => 'µ±Ç°Í¼±ê', 'admin_stamplist_none' => 'ÎÞͼ±ê', 'admin_stamplist_select' => 'Ñ¡ÔñÖ÷Ìâͼ±ê', 'admin_stickreply' => 'Öö¥µ½Ö÷ÌâÌû', 'admin_threadsplit_restore' => 'ÄúÈ·ÈÏÒª½«´ËÖ÷ÌâÒÆ³ý´æµµÇøÂð£¿', 'admin_unbanpost' => '½â³ý', 'admin_unstickreply' => '½â³ýÖö¥', 'admin_live' => 'Ö±²¥', 'admin_live_cancle' => 'È¡ÏûÖ±²¥', 'admin_live_tips' => 'ͬһ°æ¿éÄÚÖ»ÄÜÉèÖÃÒ»¸öÖ±²¥Ìû
ÉèÖÃÖ±²¥ºó»á¸²¸ÇÔ­ÓÐÖ±²¥Ìû
½¨Ò鳬¹ý5Ìõ»Ø¸´ºóÉèÖÃ', 'pay_buyers' => 'ÒѹºÂòÈËÊý', 'topicadmin_crime_banpost_nums' => 'Óû§ $crimeauthor Ìû×ÓÒѱ»ÆÁ±Î $crimenum ´Î', 'topicadmin_delet_comment' => 'ɾ³ýÑ¡¶¨µãÆÀ', 'topicadmin_select_comment' => 'Ñ¡ÔñÁË 1 ¸öµãÆÀ', 'topicadmin_warn_add' => '¾¯¸æ', 'topicadmin_warn_delete' => '½â³ý', 'topicadmin_warn_nums' => 'Óû§ $warningauthor Òѱ»¾¯¸æ $authorwarnings ´Î', 'topicadmin_warn_prompt' => '{$_G[setting][warningexpiration]} ÌìÄÚÀۼƱ»¾¯¸æ {$_G[setting][warninglimit]} ´Î£¬½«±»×Ô¶¯½ûÖ¹·¢Ìû {$_G[setting][warningexpiration]} Ìì', 'topicadmin_useropt' => 'Óû§²Ù×÷', 'topicadmin_banuser' => '½ûÑÔ', 'topicadmin_userdelpost' => 'Çå¿ÕÌû×Ó', 'admin_ban_this_ip' => '½ûÖ¹´Ë IP', 'admin_user_this_ip' => '´Ë IP ÏÂÓû§', 'admin_bump_down' => 'ÌáÉýϳÁ', 'admin_openclose' => '¹Ø±Õ´ò¿ª', 'admin_select' => 'Ñ¡ÖÐ', 'maximize' => '×î´ó»¯', 'minimize' => '×îС»¯', 'piece' => 'ƪ', 'topicadmin_recommend_forum' => 'ÍÆ¼öµ½°æ¿é', 'post_trade_sticklist' => 'ÍÆ¼öÉÌÆ·', 'post_trade_transport_physical' => 'Âò¼ÒÊÕµ½»õÎïºóÖ±½ÓÖ§¸¶¸øÎïÁ÷¹«Ë¾', 'trade_additional' => '¸½¼Ó', 'trade_buy_confirm' => 'È·ÈϹºÂò', 'trade_buy_crediterror' => 'ÄúµÄ»ý·Ö²»×ã
', 'trade_buyercontact' => 'ÊÕ»õµØÖ·', 'trade_buyermobile' => 'ÊÕ»õÈËÊÖ»ú', 'trade_buyername' => 'ÊÕ»õÈËÐÕÃû', 'trade_buyerphone' => 'ÊÕ»õÈ˵绰', 'trade_buyerzip' => 'ÊÕ»õÈËÓʱà', 'trade_confirm_buy' => 'È·ÈϹºÂòÐÅÏ¢', 'trade_confirm_goods' => '1.È·ÈÏÉÌÆ·', 'trade_credits_total' => 'Ö§¸¶×ܶî', 'trade_guest_alarm' => 'ÄúĿǰΪÓοͣ¬¹ºÂòºóÄúÎÞ·¨ÔÚ±¾°æ¿é²é¿´½»Ò×״̬£¬Çëµ½Ö§¸¶ÍøÕ¾²éѯ', 'trade_nums' => '¹ºÂòÊýÁ¿', 'trade_pay_alipay' => 'ÔÚÏß½»Ò×', 'trade_pay_offline' => 'µ£±£½»Ò×', 'trade_paymethod' => '½»Ò×·½Ê½', 'trade_price' => 'ÏÖ¼Û', 'trade_recommended_goods' => 'ÍÆ¼öµÄÉÌÆ·', 'trade_seller_remark' => '±¸×¢ÐÅÏ¢', 'trade_seller_remark_comment' => '200 ×ÖÒÔÄÚ', 'trade_units' => 'Ôª', 'save' => '±£´æ', 'trade_displayorder' => '¹ñ̨ÉÌÆ·¹ÜÀí', 'trade_hour' => 'Сʱ', 'trade_remaindays' => 'Ê£Óàʱ¼ä', 'trade_show_order' => 'ÏÔʾ˳Ðò', 'trade_timeout' => '³É½»½áÊø', 'trade_update_stick' => 'ÍÆ¼ö', 'trade_update_stickmax' => 'Äú×î¶à¿ÉÍÆ¼öµÄÉÌÆ·Êý:', 'attach_nopermission' => 'ÄúËùÔÚµÄÓû§×éÎÞ·¨ÏÂÔØ»ò²é¿´¸½¼þ', 'eccredit_buyerinfo' => 'Âò¼ÒÐÅÓÃ', 'eccredit_sellerinfo' => 'Âô¼ÒÐÅÓÃ', 'on_line' => 'ÔÚÏß', 'pack_up' => 'ÊÕÆð', 'post_trade_buynumber' => 'ÀÛ¼ÆÊÛ³ö', 'post_trade_removed' => '´ËÉÌÆ·Òѱ»É¾³ý', 'post_trade_support_tenpay' => '´ËÉÌÆ·Ö§³Ö²Æ¸¶Í¨£¬Äú¿ÉÒÔÏÈÑé»õºó¸¶¿î', 'post_trade_transport_none' => 'ÎÞÔË·Ñ', 'sold_out' => 'ÒÑÊÛÍê', 'taobao' => '°¢ÀïÍúÍú', 'trade' => 'ÉÌÆ·', 'trade_bargain' => '¿³¼Û', 'trade_costprice' => 'Ô­¼Û', 'trade_locus' => 'µØµã', 'trade_other_goods' => '¹ñ̨ÆäËüÉÌÆ·', 'trade_rate' => 'ÐÅÓÃÆÀ¼Û', 'trade_seller_other_goods' => '$trade[seller] µÄÆäËüÉÌÆ·', 'trade_seller_real_name' => 'Âô¼ÒʵÃû', 'trade_transport' => 'ÔË·Ñ', 'trade_type_buy' => 'ÉÌÆ·', 'trade_type_viewthread' => 'ÉÌÆ·ÀàÐÍ', 'trade_viewtrade' => '²é¿´ÉÌÆ·', 'user_threads' => '²é¿´Ö÷Ìâ', 'eccredit1' => 'ÆÀ¼Û', 'eccredit_post_already' => '¶Ô·½ÒÑÆÀ', 'eccredit_post_between' => 'Ë«·½ÒÑÆÀ', 'eccredit_post_waiting' => 'µÈ´ý¶Ô·½ÆÀ¼Û', 'tenpay_trade_order_status' => '²é¿´²¢È·ÈϲƸ¶Í¨½»Ò×µ¥×´Ì¬', 'trade_baseprice' => 'ÉÌÆ·¼Û¸ñ', 'trade_buyer' => 'Âò¼Ò', 'trade_message' => 'ÁôÑÔ', 'trade_online_tenpay' => 'ʹÓòƸ¶Í¨ÔÚÏßÖ§¸¶', 'trade_online_tradeurl' => 'ÔÚÏß½»Ò×µ¥', 'trade_order' => '½»Ò×µ¥', 'trade_order_no' => '½»Ò×µ¥ºÅ', 'trade_order_status' => '²é¿´²¢È·ÈÏÖ§¸¶±¦½»Ò×µ¥×´Ì¬', 'trade_password' => 'µÇ¼ÃÜÂë', 'trade_payment' => '½»Ò×½ð¶î', 'trade_payment_comment' => '(µã»÷Ï·½µÄ¡°¸üн»Ò×µ¥¡±°´Å¥ÖØÐ¼ÆËã½»Ò×½ð¶î)', 'trade_submit_order' => '¸üн»Ò×µ¥', 'trade_transportfee' => 'ÔË·Ñ', 'upload_selectfile' => 'ä¯ÀÀ', 'poll_select_option' => 'Ñ¡ÔñÏàÓ¦µÄͶƱÏ(ÁгöÁËÓÐͶƱµÄÑ¡Ïî,¿É¶àÑ¡,²»Ñ¡±íʾ¸øËùÓÐͶƱÓû§¼Ó±êÇ©)', 'set_tag_log' => 'Ìí¼Ó±êÇ©¼Ç¼', 'set_tag_to_activity_users' => '¸ø»î¶¯²ÎÓëÕßÌù±êÇ©', 'set_tag_to_poll_users' => '¸ø²ÎÓëͶƱµÄ»áÔ±Ìù±êÇ©', 'set_tag_to_reply_users' => '¸ø²ÎÓë»ØÌûµÄ»áÔ±Ìù±êÇ©', 'follow' => 'ÊÕÌýTA', 'have_ignored' => 'ÒѺöÂÔ', 'i_want' => 'ÎÒÒª', 'last_thread' => 'ÉÏÒ»Ö÷Ìâ', 'moderating' => 'ÉóºËÖÐ', 'modmenu_archive' => 'È¡Ïû´æµµ', 'modmenu_banpost' => 'ÆÁ±Î', 'modmenu_banthread' => 'ÆÁ±Î', 'modmenu_copy' => '¸´ÖÆ', 'modmenu_deletepost' => 'ɾ³ý', 'modmenu_deletethread' => 'ɾ³ýÖ÷Ìâ', 'modmenu_digestpost' => '¾«»ª', 'modmenu_grouprecommend' => 'ÍÆµ½°æ¿é', 'modmenu_live' => 'Ö±²¥', 'modmenu_highlight' => '¸ßÁÁ', 'modmenu_icon' => 'ͼ±ê', 'modmenu_merge' => 'ºÏ²¢', 'modmenu_move' => 'ÒÆ¶¯', 'modmenu_pusharticle' => 'Éú³ÉÎÄÕÂ', 'modmenu_pushplus' => 'ÎÄÕÂÁ¬ÔØ', 'modmenu_recommend' => 'ÍÆ¼ö', 'modmenu_removereward' => 'ÒÆ³ýÐüÉÍ', 'modmenu_repair' => 'ÐÞ¸´', 'modmenu_restore' => '³·Ïú¸¶·Ñ', 'modmenu_split' => '·Ö¸î', 'modmenu_stamp' => 'ͼÕÂ', 'modmenu_stickpost' => 'Öö¥', 'modmenu_stickthread' => 'Öö¥', 'modmenu_switch_off' => '¹Ø±Õ', 'modmenu_switch_on' => '´ò¿ª', 'modmenu_type' => '·ÖÀà', 'modmenu_updown' => 'Éý½µ', 'modmenu_warn' => '¾¯¸æ', 'next_thread' => 'ÏÂÒ»Ö÷Ìâ', 'nofollow' => '²»ÊÕÌý', 'return_forumdisplay' => '·µ»ØÁбí', 'rushreply_view' => '²é¿´ÇÀÖÐÂ¥²ã', 'share_url_copy' => '¸´ÖÆÁ´½Ó', 'share_url_copy_comment' => 'ÄúµÄÅóÓÑ·ÃÎÊ´ËÁ´½Óºó£¬Äú½«»ñµÃÏàÓ¦µÄ»ý·Ö½±Àø', 'thread_author' => 'Â¥Ö÷', 'thread_printable' => '´òÓ¡', 'thread_replycredit_tips1' => '»Ø¸´±¾Ìû¿É»ñµÃ {$_G[forum_thread][replycredit_rule][extcredits]} {$_G[setting][extcredits][$_G[forum_thread][replycredit_rule][extcreditstype]][unit]}{$_G[setting][extcredits][$_G[forum_thread][replycredit_rule][extcreditstype]][title]}½±Àø!', 'thread_replycredit_tips2' => 'ÿÈËÏÞ {$_G[forum_thread][replycredit_rule][membertimes]} ´Î', 'thread_replycredit_tips3' => '(Öн±¸ÅÂÊ {$_G[forum_thread][replycredit_rule][random]}%)', 'thread_rushreply' => '±¾ÌûΪÇÀÂ¥Ìû£¬»¶Ó­ÇÀÂ¥!', 'thread_rushreply_check_back' => '·µ»ØÇÀÂ¥Ìû', 'thread_rushreply_end' => '½ØÖ¹Â¥²ã£º', 'thread_rushreply_floor' => '½±ÀøÂ¥²ã', 'thread_rushreply_limit' => '±¾ÌûΪÇÀÂ¥Ìû£¬{$rushresult[creditlimit_title]}´óÓÚ{$rushresult[creditlimit]}¿ÉÒÔÇÀÂ¥', 'thread_rushreply_over' => 'ÇÀÂ¥½áÊø£º', 'thread_rushreply_rewardnum' => '¸öÂ¥²ãÒÑÖн±', 'thread_rushreply_noreward' => 'ÔÝʱ»¹Ã»ÓÐÂ¥²ãÖн±', 'thread_rushreply_start' => ' ÇÀÂ¥¿ªÊ¼£º', 'thread_rushreply_statnum' => 'ͳ¼Æ²ÎÓëÈËÊý', 'usertag' => 'Óû§±êÇ©', 'activity_about_member' => 'Ê£ÓàÃû¶î', 'activity_enter_imgurl' => 'ÇëÊäÈëͼƬµØÖ·', 'activity_imgurl_error' => 'ͼƬµØÖ·´íÎó', 'activity_join' => 'ÎÒÒª²Î¼Ó', 'activity_join_audit' => 'ÄúÒѾ­²Î¼ÓÁ˴˻', 'activity_join_cancel' => 'È¡Ïû±¨Ãû', 'activity_join_group' => 'µã´Ë´¦ÂíÉϼÓÈë {$_G[setting][navs][3][navname]}', 'activity_need_credit' => '×¢Ò⣺²Î¼Ó´Ë»î¶¯½«¿Û³ýÄú', 'activity_new_signup' => 'ÔÝδͨ¹ý', 'activity_no_member' => 'Äú»¹²»ÊDZ¾ {$_G[setting][navs][3][navname]} µÄ³ÉÔ±²»ÄܲÎÓë´Ë»î¶¯', 'activity_pay_myself' => '³Ðµ£×Ô¼ºÓ¦¸¶µÄ»¨Ïú', 'activity_paytype' => 'Ö§¸¶·½Ê½', 'activity_type' => '»î¶¯ÀàÐÍ', 'activity_wait' => 'ÄúµÄ¼ÓÈëÉêÇëÒÑ·¢³ö£¬ÇëµÈ´ý·¢ÆðÕßÉóÅú', 'activity_would_payment' => 'Ö§¸¶', 'activiy_guest_more' => 'ÄúµÄÁôÑÔ³¬¹ý 200 ¸ö×Ö·ûµÄÏÞÖÆ', 'complete_data' => 'ÍêÉÆ×ÊÁÏ', 'manage' => '¹ÜÀí', 'next_page' => 'ÏÂÒ»Ò³', 'next_page_extra' => 'ÏÂÒ»Ò³ »', 'pm_archive' => 'µ¼³ö', 'debate_all_point' => 'È«²¿¹Ûµã', 'debate_comment_dateline' => 'ÆÀÅÐʱ¼ä', 'debate_join' => '¼ÓÈë', 'debate_support' => 'Ö§³Ö', 'debate_umpire_end' => '½áÊø´Ë´Î±çÂÛ', 'debate_umpirepoint_edit' => '±à¼­²ÃÅй۵ã', 'debater' => '±çÊÖ', 'login_to_reply' => 'ÄúÐèÒªµÇ¼ºó²Å¿ÉÒÔ»ØÌû', 'post_fastreply_gotolast' => '»ØÌûºóÌø×ªµ½×îºóÒ»Ò³', 'post_newreply' => '·¢±í»Ø¸´', 'post_reply_relay' => '»ØÌû²¢×ª²¥', 'debate_view_neutral' => 'Ö»¿´ÖÐÁ¢', 'debate_view_opponent' => 'Ö»¿´·´·½', 'debate_view_square' => 'Ö»¿´Õý·½', 'post_add_aboutcounter' => 'Ìí¼Ó¹ñ̨½éÉÜ', 'reward_set_bestanswer' => '×î¼Ñ´ð°¸', 'expiration_unlimit' => 'ÓÀ ¾Ã', 'thread_moderations' => 'Ö÷Ìâ²Ù×÷¼Ç¼', 'thread_moderations_action' => '²Ù×÷', 'thread_moderations_cron' => 'ÈÎÎñϵͳ', 'thread_moderations_username' => '²Ù×÷Õß', 'to' => 'µ½', 'ban_member' => '½ûÖ¹', 'clear' => 'ÇåÀí', 'collection_fromctid' => 'ÄúÊÇ´ÓÌÔר¼­ $post[sourcecollection][name] ·ÃÎʵ½±¾ÌûµÄ£¬»¶Ó­¶Ôר¼­´ò·Ö£º', 'collection_rate' => 'ÆÀ·Ö', 'collection_related' => '±¾Ìû±»ÒÔÏÂÌÔר¼­ÍƼö:', 'debate_filter' => '°´Á¢³¡É¸Ñ¡', 'follower' => 'ÌýÖÚ', 'from_mobile' => 'À´×ÔÊÖ»ú', 'ignore_replynotice' => 'È¡Ïû»Ø¸´Í¨Öª', 'member_avatar_banned' => 'Í·Ïñ±»ÆÁ±Î', 'member_deleted' => '¸ÃÓû§Òѱ»É¾³ý', 'member_homepage' => '²é¿´¸öÈËÍøÕ¾', 'member_signature_banned' => 'Ç©Ãû±»ÆÁ±Î', 'member_viewpro' => '²é¿´Ïêϸ×ÊÁÏ', 'modmenu_blockrecommend' => 'ÍÆËÍ', 'offline' => 'µ±Ç°ÀëÏß', 'online' => 'µ±Ç°ÔÚÏß', 'people_score' => 'ÈËÆÀ·Ö', 'post_ascview' => 'ÕýÐòä¯ÀÀ', 'post_copied' => 'Ìû×ÓµØÖ·¸´ÖƳɹ¦', 'post_descview' => 'µ¹Ðòä¯ÀÀ', 'post_from_mobile' => '¸ÃÌûͨ¹ýÊÖ»ú¿Í»§¶Ë·¢²¼', 'prosit' => '¹§Ï²', 'published' => '·¢±í', 'receive_replynotice' => '½ÓÊջظ´Í¨Öª', 'related_thread' => 'Ïà¹ØÌû×Ó', 'removerate' => '³·ÏúÆÀ·Ö', 'rushreply_hit' => 'ÇÀÖб¾Â¥', 'rushreply_hit_title' => '²é¿´ÇÀÖÐÂ¥²ã', 'thread_favorite' => 'ÊÕ²Ø', 'thread_magic' => 'ʹÓõÀ¾ß', 'thread_mod' => 'Ìû×Óģʽ', 'thread_mod_by' => '±¾Ö÷ÌâÓÉ $lastmod[modusername] ÓÚ $lastmod[moddateline] $lastmod[modaction]', 'thread_mod_recommend_by' => '±¾Ö÷ÌâÓÉ $lastmod[modusername] ÓÚ $lastmod[moddateline] $lastmod[modaction]µ½ $lastmod[reason]', 'thread_realy' => 'ת²¥', 'thread_redirect_postno' => 'µçÌÝÖ±´ï', 'thread_redirect_postno_tips' => 'Ìø×ªµ½Ö¸¶¨Â¥²ã', 'thread_share' => '·ÖÏí', 'thread_show_all' => 'ÏÔʾȫ²¿Â¥²ã', 'thread_show_author' => 'Ö»¿´¸Ã×÷Õß', 'viewthread_left_addfriend' => '¼ÓºÃÓÑ', 'viewthread_left_poke' => '´òÕкô', 'viewthread_left_sendpm' => '·¢ÏûÏ¢', 'viewthread_left_tospace' => '´®¸öÃÅ', 'viewthread_share_to' => '·ÖÏíµ½', 'warn_get' => 'Êܵ½¾¯¸æ', 'admin_message_banned' => 'Ìáʾ: ×÷Õß±»½ûÖ¹»òɾ³ý ÄÚÈÝ×Ô¶¯ÆÁ±Î£¬Ö»ÓйÜÀíÔ±»òÓйÜÀíȨÏ޵ijÉÔ±¿É¼û', 'admin_message_single_banned' => 'Ìáʾ: ¸ÃÌû±»¹ÜÀíÔ±»ò°æÖ÷ÆÁ±Î£¬Ö»ÓйÜÀíÔ±»òÓйÜÀíȨÏ޵ijÉÔ±¿É¼û', 'attach_nopermission_login' => 'ÄúÐèÒª µÇ¼ ²Å¿ÉÒÔÏÂÔØ»ò²é¿´£¬Ã»ÓÐÕ˺ţ¿{$_G[setting][reglinkname]}', 'guesttipsinthread_text' => 'ÂíÉÏ×¢²á£¬½á½»¸ü¶àºÃÓÑ£¬ÏíÓøü¶à¹¦ÄÜ£¬ÈÃÄãÇáËÉÍæ×ªÉçÇø¡£', 'attach_nopermission_connect_fill_profile' => 'ÄúÐèÒª ÍêÉÆÕ˺ÅÐÅÏ¢ »ò °ó¶¨ÒÑÓÐÕ˺Šºó²Å¿ÉÒÔÏÂÔØ»ò²é¿´', 'attach_nopermission_notice' => '±¾Ìû×ÓÖаüº¬¸ü¶à×ÊÔ´', 'has_expired' => '¸ÃÐÅÏ¢ÒѾ­¹ýÆÚ', 'have' => 'ÒÑÓÐ', 'image_big' => '´óͼ', 'image_list_openning' => '×éͼ´ò¿ªÖУ¬ÇëÉÔºò......', 'image_small' => 'Сͼ', 'message_banned' => 'Ìáʾ: ×÷Õß±»½ûÖ¹»òɾ³ý ÄÚÈÝ×Ô¶¯ÆÁ±Î', 'message_ishidden_hiddenreplies' => '´ËÌû½ö×÷Õ߿ɼû', 'message_single_banned' => 'Ìáʾ: ¸ÃÌû±»¹ÜÀíÔ±»ò°æÖ÷ÆÁ±Î', 'message_password_exists' => '±¾ÌûΪÃÜÂëÌû', 'more_images' => '¸ü¶àͼƬ', 'pack' => 'ÊÕÆð', 'pay_threads' => '¸¶·ÑÖ÷Ìâ, ¼Û¸ñ', 'published_in_floor' => '²é¿´Â¥²ã', 'rate_total' => '×ÜÆÀ·Ö', 'replies_recommended' => '»ØÌûÍÆ¼ö', 'pay_comment' => '±¾Ö÷ÌâÐèÏò×÷ÕßÖ§¸¶ {$thread[price]} {$_G[setting][extcredits][$_G[setting][creditstransextra][1]][unit]}{$_G[setting][extcredits][$_G[setting][creditstransextra][1]][title]} ²ÅÄÜä¯ÀÀ', 'pay_free_time' => '±¾Ö÷Ì⹺Âò½ØÖ¹ÈÕÆÚΪ $thread[endtime]£¬µ½ÆÚºó½«Ãâ·Ñ', 'people_buy' => 'È˹ºÂò', 'poll_count_down' => '¾à½áÊø»¹ÓÐ', 'poll_end' => 'ͶƱÒѾ­½áÊø', 'poll_hour' => 'Сʱ', 'poll_minute' => '·ÖÖÓ', 'poll_more_than' => '×î¶à¿ÉÑ¡ $maxchoices Ïî', 'poll_msg_allowvotepolled' => 'ÄúÒѾ­Í¶¹ýƱ£¬Ð»Ð»ÄúµÄ²ÎÓë', 'poll_msg_allowvotethread' => '¸ÃͶƱÒѾ­¹Ø±Õ»òÕß¹ýÆÚ£¬²»ÄÜͶƱ', 'poll_msg_allwvoteusergroup' => 'ÄúËùÔÚµÄÓû§×éûÓÐͶƱȨÏÞ', 'poll_msg_overt' => '´ËΪ¹«¿ªÍ¶Æ±£¬ÆäËûÈ˿ɿ´µ½ÄúµÄͶƱÏîÄ¿', 'poll_multiple' => '¶àÑ¡', 'poll_single' => 'µ¥Ñ¡', 'poll_view_voters' => '²é¿´Í¶Æ±²ÎÓëÈË', 'poll_voterscount' => '¹²ÓÐ $voterscount È˲ÎÓëͶƱ', 'poll_voters' => '²ÎÓëͶƱµÄ»áÔ±', 'comment_num' => 'ÆÀÂÛÊý', 'home_view_num' => '²é¿´Êý', 'latest_comments' => '×îÐÂÆÀÂÛ', 'portal' => 'ÃÅ»§', 'posted_by' => '·¢²¼Õß', 'thread_print' => '´òÓ¡±¾Ò³', 'welcometo' => '»¶Ó­¹âÁÙ', 'reward_answer' => 'ÎÒÀ´»Ø´ð', 'reward_bestanswer' => '×î¼Ñ´ð°¸', 'view_full_content' => '²é¿´ÍêÕûÄÚÈÝ', 'my_trade_stat' => '½»Ò׼Ǽ', 'post_trade_totalnumber' => 'ÉÌÆ·Êý', 'trade_nogoods' => '±¾¹ñ̨ÎÞÉÌÆ·', 'viewthread_trade_message1' => 'Äú¿ÉÒÔÔÚ±¾ÌûÖмÌÐø', 'viewthread_trade_message2' => 'Ìí¼Ó¶à¸öÉÌÆ·', 'viewthread_trade_message3' => '²¢¿ÉÒÔÕë¶ÔÌûÄÚËùÓÐÉÌÆ·Ìí¼ÓͳһµÄ', 'viewthread_trade_message4' => '¹ñ̨½éÉÜ', 'warn_view_log' => '$warnuser ¾¯¸æ¼Ç¼', 'warn_view_prompt' => '$warnuser Òѱ»Àۼƾ¯¸æ $warnnum ´Î£¬{$_G[setting][warningexpiration]} ÌìÄÚÀۼƱ»¾¯¸æ {$_G[setting][warninglimit]} ´Î£¬½«±»×Ô¶¯½ûÖ¹·¢Ìû {$_G[setting][warningexpiration]} Ìì', 'main_nav' => 'Ö÷µ¼º½', 'quick_nav' => '¿ì½Ýµ¼º½', 'post_deleted' => 'ÎÞЧ¥²ã£¬¸ÃÌûÒѾ­±»É¾³ý', 'have_posted' => 'ÒÑ·¢±í', 'guide_draft' => '²Ý¸å', 'pending' => '´ýÉóºË', 'preview' => 'Ô¤ÀÀ', 'expire_dateline' => '¹ýÆÚʱ¼ä', 'darkroom' => 'СºÚÎÝ', 'darkroom_no_users' => '»¹Ã»ÓÐÈËÈëסСºÚÎÝ£¬´ó¼Ò¶¼ÊÇÄ£·¶»áÔ±~', 'replystick' => 'Öö¥»Ø¸´', 'search_forum' => 'ËÑË÷°æ¿é', 'latest_images' => '×îÐÂͼƬ', 'hot_thread' => 'ÈÈÃÅÌû×Ó', 'my_order_collection' => 'ÎÒ¶©ÔĵÄר¼­', 'recommend_collection' => 'ÌÔר¼­ÍƼö', 'rank' => 'ÅÅÃû', 'previous_rank' => 'ÉÏ´ÎÅÅÃû', 'latest' => '×îÐÂ', 'showdisplayorder' => 'ÏÔʾÖö¥', 'hidedisplayorder' => 'Òþ²ØÖö¥Ìû', 'havemore_special' => '¡¾»¹ÓÐ', 'over' => '½áÊø', 'right_special' => '¡¿', 'like' => 'ϲ»¶', 'onloading' => '¼ÓÔØÖÐ', 'youneedpay' => 'ÄúÐèÒªÖ§¸¶', 'onlyintoforum' => '²ÅÄܽøÈë´Ë°æ¿é', 'confirmyourpay' => 'È·ÈÏÖ§¸¶', 'rushreply_thread' => 'ÇÀÂ¥Ö÷Ìâ', 'thread_pricepay' => 'Ö÷ÌâÊÛ¼Û', 'stopfloor' => '»ØÌûÏÞÖÆ', 'replylimit' => 'ÿ¸öÓû§»ØÌû´ÎÊýÉÏÏÞ', 'basic_attr' => '»ù±¾ÊôÐÔ', 'text_feature' => 'Îı¾ÌØÐÔ', 'content_to_pic' => 'ÄÚÈÝÉú³ÉͼƬ', 'manage_operation' => '¹ÜÀí²Ù×÷', 'page_separate' => '·ÖÒ³', 'directory' => 'Ŀ¼', 'replypassword' => 'Ìû×ÓÃÜÂë', 'replybackground' => 'Ìû×Ó±³¾°', 'pictypefile' => 'ͼƬÎļþ', 'backgroundcolor' => '±³¾°É«', 'collapse_the_left' => 'ÊÕÆð×ó²à', 'open_the_left' => '¿ªÆô×ó²à', 'other_reply_hide' => '»¹ÓÐһЩÌû×Ó±»ÏµÍ³×Ô¶¯Òþ²Ø£¬µã´ËÕ¹¿ª', 'keyboard_tip' => 'Ìáʾ£ºÖ§³Ö¼üÅÌ·­Ò³<-×ó ÓÒ->', 'lightclose' => '¹ØµÆ', 'lightopen' => '¿ªµÆ', 'waitpicloading' => '×éͼ´ò¿ªÖУ¬ÇëÉÔºò', 'text_summary' => 'ÕýÎÄÕªÒª', 'view_bigpic' => 'Ö»¿´´óͼ', 'read_mode' => 'ÔĶÁģʽ', 'fav_thread' => 'Êղر¾Ìû', 'rate_position' => 'ÆÀ·Ö±íÁ¢³¡', 'follow_spread' => 'ת²¥ÇóÀ©É¢', 'share_digest' => '·ÖÏíÍÆ¾«»ª', 'thread_collect' => 'ÌÔºÃÌû½ø×¨¼­', 'maketoponce' => '¶¥Ò»ÏÂ', 'makebottomonce' => '²ÈÒ»ÏÂ', 'support_reply' => 'Ö§³Ö', 'against_reply' => '·´¶Ô', 'pleaseinputpw' => '£¬ÇëÊäÈëÃÜÂë', 'number_of_participants' => '²ÎÓëÈËÊý', 'hide_preview' => 'Òþ²ØÔ¤ÀÀ', 'collapse_preview' => 'ÊÕÆðÔ¤ÀÀ', 'hot_thread' => 'ÈÈÌû', 'hidden' => 'Òþ²Ø', 'hiderecover_tips' => 'µã»÷»Ö¸´Ö÷ÌâÒþ²Ø×´Ì¬', 'hiderecover' => '»Ö¸´Òþ²Ø', 'content_actions' => '¸ü¶à²Ù×÷', ); ?> Î÷±±Ò»¼äÃíÓîÃſڵĶÔÁª(Ôñ) - ÎÄѧÒÕÊõ - Ì¨É½Í¬Ñ§Íø - Powered by Discuz!
²é¿´: 1878|»Ø¸´: 4

Î÷±±Ò»¼äÃíÓîÃſڵĶÔÁª(Ôñ)

[¸´ÖÆÁ´½Ó]

¸ÃÓû§´Óδǩµ½

23

Ö÷Ìâ

1327

Ìû×Ó

7090

»ý·Ö

Óª³¤

ÐÄϲ»¶Éú

»ý·Ö
7090

ÉçÇø¾ÓÃñ

QQ
·¢±íÓÚ 2010-12-27 09:27:37 | ÏÔʾȫ²¿Â¥²ã |ÔĶÁģʽ
Ôڸߴ¦Á¢,×ÅÆ½´¦×ø,ÏòÀ«´¦ÐÐ; ´æÉϵÈÐÄ,½áÖеÈÔµ,Ïíϵȸ£. Ôڸߴ¦Á¢,ÊÇ˵¿ÉÒÔÕ¾µÃºÜ¸ß¿´ÎÊÌâ; ×ÅÆ½´¦×ø,¾ÍÊÇ̤̤ʵʵ,ƽµÈ´ýÈË; ÏòÀ«´¦ÐÐ,¾ÍÊÇ˵ÐÄÐØÒª¿ªÀ«,×öÊÂÒª±äͨ,±ð×ßËÀºúͬ; ´æÉϵÈÐÄ,¾ÍÊÇ´æÉÆÁ¼µÄÐÄ,Òª×ÔÂÉ; ½áÖеÈÔµ,¾ÍÊDz»¾ÜÈËǧÀïÖ®Íâ,Ò²²»Áã¾àÀë½Ó´¥,ÖÐÓ¹; Ïíϵȸ£,¾ÍÊÇ˵ҪÄܳԿà. ÕâÊÇÒ»¸öºÜÄÑ´ïµ½µÄ¾³½ç.
ÄãÓò»Í¬µÄÀñòȥ¶Ô´ý²»Í¬µÄÈË,ÄDz¢²»ÊÇÀñò,¶øÊÇÃæ¾ß.

¸ÃÓû§´Óδǩµ½

183

Ö÷Ìâ

1Íò

Ìû×Ó

5Íò

»ý·Ö

°æÖ÷

Rank: 7Rank: 7Rank: 7

»ý·Ö
51619

ÉçÇø¾ÓÃñ

·¢±íÓÚ 2010-12-27 10:33:02 | ÏÔʾȫ²¿Â¥²ã
ºÃÁª.
»Ø¸´

ʹÓõÀ¾ß ¾Ù±¨

¸ÃÓû§´Óδǩµ½

638

Ö÷Ìâ

1Íò

Ìû×Ó

4Íò

»ý·Ö

Âó¤

»ý·Ö
42325

ÉçÇø¾ÓÃñ×ɳ·¢

·¢±íÓÚ 2010-12-27 19:35:28 | ÏÔʾȫ²¿Â¥²ã
Ò»¸±ºÜºÃµÄ¶ÔÁª£¬Ð»Â¥Ö÷ÉÏ´«£¡
»Ø¸´

ʹÓõÀ¾ß ¾Ù±¨

¸ÃÓû§´Óδǩµ½

23

Ö÷Ìâ

1327

Ìû×Ó

7090

»ý·Ö

Óª³¤

ÐÄϲ»¶Éú

»ý·Ö
7090

ÉçÇø¾ÓÃñ

QQ
 Â¥Ö÷| ·¢±íÓÚ 2010-12-27 21:47:25 | ÏÔʾȫ²¿Â¥²ã

»Ø 1Â¥(¹ðÁÖɽˮ¼×ÌìÏÂ) µÄÌû×Ó

лл·ÖÏí!
ÄãÓò»Í¬µÄÀñòȥ¶Ô´ý²»Í¬µÄÈË,ÄDz¢²»ÊÇÀñò,¶øÊÇÃæ¾ß.
»Ø¸´

ʹÓõÀ¾ß ¾Ù±¨

¸ÃÓû§´Óδǩµ½

23

Ö÷Ìâ

1327

Ìû×Ó

7090

»ý·Ö

Óª³¤

ÐÄϲ»¶Éú

»ý·Ö
7090

ÉçÇø¾ÓÃñ

QQ
 Â¥Ö÷| ·¢±íÓÚ 2010-12-27 21:47:56 | ÏÔʾȫ²¿Â¥²ã

»Ø 2Â¥(°¢»Ô) µÄÌû×Ó

лл·ÖÏí!
ÄãÓò»Í¬µÄÀñòȥ¶Ô´ý²»Í¬µÄÈË,ÄDz¢²»ÊÇÀñò,¶øÊÇÃæ¾ß.
»Ø¸´

ʹÓõÀ¾ß ¾Ù±¨

ÄúÐèÒªµÇ¼ºó²Å¿ÉÒÔ»ØÌû µÇ¼ | Á¢¼´×¢²á

±¾°æ»ý·Ö¹æÔò

СºÚÎÝ|ÊÖ»ú°æ|Archiver|̨ɽͬѧ»á ( ÔÁICP±¸17038726ºÅ-1 )

GMT+8, 2025-8-15 18:27 , Processed in 0.302628 second(s), 24 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

¿ìËٻظ´ ·µ»Ø¶¥²¿ ·µ»ØÁбí