久久久久av_欧美日韩一区二区在线_国产精品三区四区_日韩中字在线

返回列表 發帖
查看: 1794|回復: 2

[求助] 個人資料注冊時間,怎么僅管理員可見,或者管理員正常顯示,其它用戶加密顯示******這樣子

5

主題

8

回帖

14

積分

初學乍練

貢獻
0 點
金幣
0 個
樓主
發表于 2023-7-24 13:08:33 | 只看樓主 |倒序瀏覽 |閱讀模式
個人資料注冊時間,怎么僅管理員可見,或者管理員正常顯示,其它用戶加密顯示******這樣子



source/include/space/space_profile.php  應該是在里面修改,有大佬幫忙改一下么,或者有償也行

我知道答案 回答被采納將會獲得1 貢獻 已有2人回答
回復

使用道具 舉報

5

主題

8

回帖

14

積分

初學乍練

貢獻
0 點
金幣
0 個
沙發
 樓主| 發表于 2023-7-24 13:08:54 | 只看Ta
if(!defined('IN_DISCUZ')) {
        exit('Access Denied');
}
$defaultop = '';
        $profilegroup = C::t('common_setting')->fetch('profilegroup', true);
        foreach($profilegroup as $key => $value) {
                if($value['available']) {
                        $defaultop = $key;
                        break;
                }
        }

$operation = in_array($_GET['op'], array('base', 'contact', 'edu', 'work', 'info', 'password', 'verify')) ? trim($_GET['op']) : $defaultop;
$space = getuserbyuid($_G['uid']);
space_merge($space, 'field_home');
space_merge($space, 'profile');

list($seccodecheck, $secqaacheck) = seccheck('password');
@include_once DISCUZ_ROOT.'./data/cache/cache_domain.php';
$spacedomain = isset($rootdomain['home']) && $rootdomain['home'] ? $rootdomain['home'] : array();
$_GET['id'] = $_GET['id'] ? preg_replace("/[^A-Za-z0-9_:]/", '', $_GET['id']) : '';
if($operation != 'password') {

        include_once libfile('function/profile');

        loadcache('profilesetting');
        if(empty($_G['cache']['profilesetting'])) {
                require_once libfile('function/cache');
                updatecache('profilesetting');
                loadcache('profilesetting');
        }
}

$allowcstatus = !empty($_G['group']['allowcstatus']) ? true : false;
$verify = C::t('common_member_verify')->fetch($_G['uid']);
if(!empty($verify) && is_array($verify)) {
        foreach($verify as $key => $flag) {
                if(in_array($key, array('verify1', 'verify2', 'verify3', 'verify4', 'verify5', 'verify6', 'verify7')) && $flag == 1) {
                        $verifyid = intval(substr($key, -1, 1));
                        if($_G['setting']['verify'][$verifyid]['available']) {
                                foreach($_G['setting']['verify'][$verifyid]['field'] as $field) {
                                        $_G['cache']['profilesetting'][$field]['unchangeable'] = 1;
                                }
                        }
                }
        }
}
$validate = array();
if($_G['setting']['regverify'] == 2 && $_G['groupid'] == 8) {
        $validate = C::t('common_member_validate')->fetch($_G['uid']);
        if(empty($validate) || $validate['status'] != 1) {
                $validate = array();
        }
}
if($_G['setting']['connect']['allow']) {
        $connect = C::t('#qqconnect#common_member_connect')->fetch($_G['uid']);
        $conisregister = $operation == 'password' && $connect['conisregister'];
}

if(in_array('wechat', $_G['setting']['plugins']['available'])) {
        if($_G['wechat']['setting']['wechat_qrtype']) {
                $wechatuser = C::t('#wechat#common_member_wechatmp')->fetch($_G['uid']);
                if($wechatuser && !$wechatuser['status']) {
                        $wechatuser['isregister'] = 1;
                }
        } else {
                $wechatuser = C::t('#wechat#common_member_wechat')->fetch($_G['uid']);
        }

        $conisregister = $operation == 'password' && $wechatuser['isregister'];
}

if(submitcheck('profilesubmit')) {

        require_once libfile('function/discuzcode');

        $forum = $setarr = $verifyarr = $errorarr = array();
        $forumfield = array('customstatus', 'sightml');

        $censor = discuz_censor::instance();

        if($_GET['vid']) {
                $vid = intval($_GET['vid']);
                if (getuserprofile('verify' . $vid) == 1) {
                        showmessage('spacecp_profile_message2');
                }
                $verifyconfig = $_G['setting']['verify'][$vid];
                if($verifyconfig['available'] && (empty($verifyconfig['groupid']) || in_array($_G['groupid'], $verifyconfig['groupid']))) {
                        $verifyinfo = C::t('common_member_verify_info')->fetch_by_uid_verifytype($_G['uid'], $vid);
                        if(!empty($verifyinfo)) {
                                $verifyinfo['field'] = dunserialize($verifyinfo['field']);
                        }
                        foreach($verifyconfig['field'] as $key => $field) {
                                if(!isset($verifyinfo['field'][$key])) {
                                        $verifyinfo['field'][$key] = $key;
                                }
                        }
                } else {
                        $_GET['vid'] = $vid = 0;
                        $verifyconfig = array();
                }
        }
        if(isset($_POST['birthprovince'])) {
                $initcity = array('birthprovince', 'birthcity', 'birthdist', 'birthcommunity');
                foreach($initcity as $key) {
                        $_GET[''.$key] = $_POST[$key] = !empty($_POST[$key]) ? $_POST[$key] : '';
                }
        }
        if(isset($_POST['resideprovince'])) {
                $initcity = array('resideprovince', 'residecity', 'residedist', 'residecommunity');
                foreach($initcity as $key) {
                        $_GET[''.$key] = $_POST[$key] = !empty($_POST[$key]) ? $_POST[$key] : '';
                }
        }
        foreach($_POST as $key => $value) {
                $field = $_G['cache']['profilesetting'][$key];
                if(in_array($field['formtype'], array('text', 'textarea')) || in_array($key, $forumfield)) {
                        $censor->check($value);
                        if($censor->modbanned() || $censor->modmoderated()) {
                                profile_showerror($key, lang('spacecp', 'profile_censor'));
                        }
                }
                if(in_array($key, $forumfield)) {
                        if($key == 'sightml') {
                                loadcache(array('smilies', 'smileytypes'));
                                $value = cutstr($value, $_G['group']['maxsigsize'], '');
                                foreach($_G['cache']['smilies']['replacearray'] AS $skey => $smiley) {
                                        $_G['cache']['smilies']['replacearray'][$skey] = '[img]'.$_G['siteurl'].'static/image/smiley/'.$_G['cache']['smileytypes'][$_G['cache']['smilies']['typearray'][$skey]]['directory'].'/'.$smiley.'[/img]';
                                }
                                $value = preg_replace($_G['cache']['smilies']['searcharray'], $_G['cache']['smilies']['replacearray'], trim($value));
                                $forum[$key] = discuzcode($value, 1, 0, 0, 0, $_G['group']['allowsigbbcode'], $_G['group']['allowsigimgcode'], 0, 0, 1);
                        } elseif($key=='customstatus' && $allowcstatus) {
                                $forum[$key] = dhtmlspecialchars(trim($value));
                        }
                        continue;
                } elseif($field && !$field['available']) {
                        continue;
                } elseif($key == 'timeoffset') {
                        if($value >= -12 && $value <= 12 || $value == 9999) {
                                C::t('common_member')->update($_G['uid'], array('timeoffset' => intval($value)));
                        }
                } elseif($key == 'site') {
                        if(!in_array(strtolower(substr($value, 0, 6)), array('http:/', 'https:', 'ftp://', 'rtsp:/', 'mms://')) && !preg_match('/^static\//', $value) && !preg_match('/^data\//', $value)) {
                                $value = 'http://'.$value;
                        }
                }
                if($field['formtype'] == 'file') {
                        if((!empty($_FILES[$key]) && $_FILES[$key]['error'] == 0) || (!empty($space[$key]) && empty($_GET['deletefile'][$key]))) {
                                $value = '1';
                        } else {
                                $value = '';
                        }
                }
                if(empty($field)) {
                        continue;
                } elseif(profile_check($key, $value, $space)) {
                        $setarr[$key] = dhtmlspecialchars(trim($value));
                } else {
                        if($key=='birthprovince') {
                                $key = 'birthcity';
                        } elseif($key=='resideprovince' || $key=='residecommunity'||$key=='residedist') {
                                $key = 'residecity';
                        } elseif($key=='birthyear' || $key=='birthmonth') {
                                $key = 'birthday';
                        }
                        profile_showerror($key);
                }
                if($field['formtype'] == 'file') {
                        unset($setarr[$key]);
                }
                if (isset($setarr[$key]) && $_G['cache']['profilesetting'][$key]['unchangeable'] && $space[$key]) {
                        unset($setarr[$key]);
                }
                if($vid && $verifyconfig['available'] && isset($verifyconfig['field'][$key])) {
                        if(isset($verifyinfo['field'][$key]) && $setarr[$key] !== $space[$key]) {
                                $verifyarr[$key] = $setarr[$key];
                        }
                        unset($setarr[$key]);
                }
                if(isset($setarr[$key]) && $_G['cache']['profilesetting'][$key]['needverify']) {
                        if($setarr[$key] !== $space[$key]) {
                                $verifyarr[$key] = $setarr[$key];
                        }
                        unset($setarr[$key]);
                }
        }
        if($_GET['deletefile'] && is_array($_GET['deletefile'])) {
                foreach($_GET['deletefile'] as $key => $value) {
                        if(isset($_G['cache']['profilesetting'][$key]) && $_G['cache']['profilesetting'][$key]['formtype'] == 'file') {
                                $verifyarr[$key] = $setarr[$key] = '';
                        }
                }
        }
        if($_FILES) {
                $upload = new discuz_upload();
                foreach($_FILES as $key => $file) {
                        if(!isset($_G['cache']['profilesetting'][$key])) {
                                continue;
                        }
                        $field = $_G['cache']['profilesetting'][$key];
                        if((!empty($file) && $file['error'] == 0) || (!empty($space[$key]) && empty($_GET['deletefile'][$key]))) {
                                $value = '1';
                        } else {
                                $value = '';
                        }
                        if(!profile_check($key, $value, $space)) {
                                profile_showerror($key);
                        } elseif($field['size'] && $field['size']*1024 < $file['size']) {
                                profile_showerror($key, lang('spacecp', 'filesize_lessthan').$field['size'].'KB');
                        } elseif($_G['cache']['profilesetting'][$key]['unchangeable'] && !empty($space[$key])){
                                profile_showerror($key);
                        }
                        $upload->init($file, 'profile');
                        $attach = $upload->attach;

                        if(!$upload->error()) {
                                $upload->save();

                                if(!$upload->get_image_info($attach['target'])) {
                                        @unlink($attach['target']);
                                        continue;
                                }
                                $setarr[$key] = '';
                                $attach['attachment'] = dhtmlspecialchars(trim($attach['attachment']));
                                if($vid && $verifyconfig['available'] && isset($verifyconfig['field'][$key])) {
                                        if(isset($verifyinfo['field'][$key])) {
                                                $verifyarr[$key] = $attach['attachment'];
                                        }
                                        continue;
                                }
                                if(isset($setarr[$key]) && $_G['cache']['profilesetting'][$key]['needverify']) {
                                        $verifyarr[$key] = $attach['attachment'];
                                        continue;
                                }
                                $setarr[$key] = $attach['attachment'];
                        }

                }
        }
        if($vid && !empty($verifyinfo['field']) && is_array($verifyinfo['field'])) {
                foreach($verifyinfo['field'] as $key => $fvalue) {
                        if(!isset($verifyconfig['field'][$key])) {
                                unset($verifyinfo['field'][$key]);
                                continue;
                        }
                        if(empty($verifyarr[$key]) && !isset($verifyarr[$key]) && isset($verifyinfo['field'][$key])) {
                                $verifyarr[$key] = !empty($fvalue) && $key != $fvalue ? $fvalue : $space[$key];
                        }
                }
        }
        if($forum) {
                if(!$_G['group']['maxsigsize']) {
                        $forum['sightml'] = '';
                }
                C::t('common_member_field_forum')->update($_G['uid'], $forum);

        }

        if(isset($_POST['birthmonth']) && ($space['birthmonth'] != $_POST['birthmonth'] || $space['birthday'] != $_POST['birthday'])) {
                $setarr['constellation'] = get_constellation($_POST['birthmonth'], $_POST['birthday']);
        }
        if(isset($_POST['birthyear']) && $space['birthyear'] != $_POST['birthyear']) {
                $setarr['zodiac'] = get_zodiac($_POST['birthyear']);
        }
        if($setarr) {
                C::t('common_member_profile')->update($_G['uid'], $setarr);
        }

        if($verifyarr) {
                C::t('common_member_verify_info')->delete_by_uid($_G['uid'], $vid);
                $setverify = array(
                                'uid' => $_G['uid'],
                                'username' => $_G['username'],
                                'verifytype' => $vid,
                                'field' => serialize($verifyarr),
                                'dateline' => $_G['timestamp']
                        );

                C::t('common_member_verify_info')->insert($setverify);
                if(!(C::t('common_member_verify')->count_by_uid($_G['uid']))) {
                        C::t('common_member_verify')->insert(array('uid' => $_G['uid']));
                }
                if($_G['setting']['verify'][$vid]['available']) {
                        manage_addnotify('verify_'.$vid, 0, array('langkey' => 'manage_verify_field', 'verifyname' => $_G['setting']['verify'][$vid]['title'], 'doid' => $vid));
                }
        }

        if(isset($_POST['privacy'])) {
                foreach($_POST['privacy'] as $key=>$value) {
                        if(isset($_G['cache']['profilesetting'][$key])) {
                                $space['privacy']['profile'][$key] = intval($value);
                        }
                }
                C::t('common_member_field_home')->update($space['uid'], array('privacy'=>serialize($space['privacy'])));
        }

        manyoulog('user', $_G['uid'], 'update');

        include_once libfile('function/feed');
        feed_add('profile', 'feed_profile_update_'.$operation, array('hash_data'=>'profile'));
        countprofileprogress();
        $message = $vid ? lang('spacecp', 'profile_verify_verifying', array('verify' => $verifyconfig['title'])) : '';
        profile_showsuccess($message);

} elseif(submitcheck('passwordsubmit', 0, $seccodecheck, $secqaacheck)) {

        $membersql = $memberfieldsql = $authstradd1 = $authstradd2 = $newpasswdadd = '';
        $setarr = array();
        $emailnew = dhtmlspecialchars($_GET['emailnew']);
        $ignorepassword = 0;
        if($_G['setting']['connect']['allow']) {
                $connect = C::t('#qqconnect#common_member_connect')->fetch($_G['uid']);
                if($connect['conisregister']) {
                        $_GET['oldpassword'] = '';
                        $ignorepassword = 1;
                        if(empty($_GET['newpassword'])) {
                                showmessage('profile_passwd_empty');
                        }
                }
        }

        if(in_array('mobile', $_G['setting']['plugins']['available']) && $wechatuser['isregister']) {
                $_GET['oldpassword'] = '';
                $ignorepassword = 1;
                if(empty($_GET['newpassword'])) {
                        showmessage('profile_passwd_empty');
                }
        }

        if($_GET['questionidnew'] === '') {
                $_GET['questionidnew'] = $_GET['answernew'] = '';
        } else {
                $secquesnew = $_GET['questionidnew'] > 0 ? random(8) : '';
        }

        if(!empty($_GET['newpassword']) && $_G['setting']['strongpw']) {
                $strongpw_str = array();
                if(in_array(1, $_G['setting']['strongpw']) && !preg_match("/\d+/", $_GET['newpassword'])) {
                        $strongpw_str[] = lang('member/template', 'strongpw_1');
                }
                if(in_array(2, $_G['setting']['strongpw']) && !preg_match("/[a-z]+/", $_GET['newpassword'])) {
                        $strongpw_str[] = lang('member/template', 'strongpw_2');
                }
                if(in_array(3, $_G['setting']['strongpw']) && !preg_match("/[A-Z]+/", $_GET['newpassword'])) {
                        $strongpw_str[] = lang('member/template', 'strongpw_3');
                }
                if(in_array(4, $_G['setting']['strongpw']) && !preg_match("/[^a-zA-z0-9]+/", $_GET['newpassword'])) {
                        $strongpw_str[] = lang('member/template', 'strongpw_4');
                }
                if($strongpw_str) {
                        showmessage(lang('member/template', 'password_weak').implode(',', $strongpw_str));
                }
        }
        if(!empty($_GET['newpassword']) && $_GET['newpassword'] != addslashes($_GET['newpassword'])) {
                showmessage('profile_passwd_illegal', '', array(), array('return' => true));
        }
        if(!empty($_GET['newpassword']) && $_GET['newpassword'] != $_GET['newpassword2']) {
                showmessage('profile_passwd_notmatch', '', array(), array('return' => true));
        }

        loaducenter();
        if($emailnew != $_G['member']['email']) {
                include_once libfile('function/member');
                checkemail($emailnew);
        }
        $ucresult = uc_user_edit(addslashes($_G['username']), $_GET['oldpassword'], $_GET['newpassword'], '', $ignorepassword, $_GET['questionidnew'], $_GET['answernew']);
        if($ucresult == -1) {
                showmessage('profile_passwd_wrong', '', array(), array('return' => true));
        } elseif($ucresult == -4) {
                showmessage('profile_email_illegal', '', array(), array('return' => true));
        } elseif($ucresult == -5) {
                showmessage('profile_email_domain_illegal', '', array(), array('return' => true));
        } elseif($ucresult == -6) {
                showmessage('profile_email_duplicate', '', array(), array('return' => true));
        }

        if(!empty($_GET['newpassword']) || $secquesnew) {
                $setarr['password'] = md5(random(10));
        }
        if($_G['setting']['connect']['allow']) {
                C::t('#qqconnect#common_member_connect')->update($_G['uid'], array('conisregister' => 0));
        }

        if(in_array('mobile', $_G['setting']['plugins']['available']) && $wechatuser['isregister']) {
                C::t('#wechat#common_member_wechat')->update($_G['uid'], array('isregister' => 0));
        }

        $authstr = false;
        if($emailnew != $_G['member']['email']) {
                if(emailcheck_send($space['uid'], $emailnew)) {
                        $authstr = true;
                        dsetcookie('newemail', "{$space['uid']}\t$emailnew\t{$_G['timestamp']}", 31536000);
                }
        }
        if($setarr) {
                if($_G['member']['freeze'] == 1) {
                        $setarr['freeze'] = 0;
                }
                C::t('common_member')->update($_G['uid'], $setarr);
        }
        if($_G['member']['freeze'] == 2 || $_G['member']['freeze'] == -1) {
                $status = C::t('common_member_validate')->fetch($_G['uid']);
                if($status) {
                        C::t('common_member_validate')->update($_G['uid'], array(
                                'submitdate' => TIMESTAMP,
                                'submittimes' => $status['submittimes'] + 1,
                                'status' => 0,
                                'message' => dhtmlspecialchars(addslashes($_POST['freezereson'])),
                        ));
                } else {
                        C::t('common_member_validate')->insert(array(
                                'uid' => $_G['uid'],
                                'submitdate' => TIMESTAMP,
                                'moddate' => 0,
                                'admin' => '',
                                'submittimes' => 1,
                                'status' => 0,
                                'message' => dhtmlspecialchars(addslashes($_POST['freezereson'])),
                                'remark' => '',
                        ), false, true);
                }
                manage_addnotify('verifyuser');
        }

        if($authstr) {
                showmessage('profile_email_verify', 'home.php?mod=spacecp&ac=profile&op=password');
        } else {
                showmessage('profile_succeed', 'home.php?mod=spacecp&ac=profile&op=password');
        }
}

if($operation == 'password') {

        $interval = $_G['setting']['mailinterval'] > 0 ? (int)$_G['setting']['mailinterval'] : 300;
        $resend = getcookie('resendemail');
        $resend = empty($resend) ? true : (TIMESTAMP - $resend) > $interval;
        $newemail = getcookie('newemail');
        $space['newemail'] = !$space['emailstatus'] ? $space['email'] : '';
        if(!empty($newemail)) {
                $mailinfo = explode("\t", $newemail);
                if(is_array($mailinfo) && $mailinfo[0] == $_G['uid'] && isemail($mailinfo[1])) {
                        if($space['emailstatus'] && !$space['freeze'] && strcasecmp($mailinfo[1], $space['email']) === 0) {
                                dsetcookie('newemail', '', -1);
                                $space['newemail'] = '';
                        } else {
                                $space['newemail'] = $mailinfo[1];
                        }
                }
        }

        if($_GET['resend'] && $resend && $_GET['formhash'] == FORMHASH) {
                $toemail = $space['newemail'] ? $space['newemail'] : $space['email'];
                if(emailcheck_send($space['uid'], $toemail)) {
                        dsetcookie('newemail', "{$space['uid']}\t$toemail\t{$_G['timestamp']}", 31536000);
                        dsetcookie('resendemail', TIMESTAMP);
                        showmessage('send_activate_mail_succeed', "home.php?mod=spacecp&ac=profile&op=password");
                } else {
                        showmessage('send_activate_mail_error', 'home.php?mod=spacecp&ac=profile&op=password', array('interval' => $interval));
                }
        } elseif ($_GET['resend']) {
                showmessage('send_activate_mail_error', 'home.php?mod=spacecp&ac=profile&op=password', array('interval' => $interval));
        }
        if(!empty($space['newemail'])) {
                $acitvemessage = lang('spacecp', 'email_acitve_message', array('newemail' => $space['newemail'], 'imgdir' => $_G['style']['imgdir'], 'formhash' => FORMHASH));
        }
        $actives = array('password' =>' class="a"');
        $navtitle = lang('core', 'title_password_security');
        if($_G['member']['freeze'] == 2 || $_G['member']['freeze'] == -1) {
                $fzvalidate = C::t('common_member_validate')->fetch($space['uid']);
                $space['freezereson'] = $fzvalidate['message'];
                $space['freezemodremark'] = $fzvalidate['remark'];
                $space['freezemoddate'] = dgmdate($fzvalidate['moddate'], 'Y-m-d H:i:s');
                $space['freezemodadmin'] = $fzvalidate['admin'];
                $space['freezemodsubmittimes'] = $fzvalidate['submittimes'];
        }

} else {

        space_merge($space, 'field_home');
        space_merge($space, 'field_forum');

        require_once libfile('function/editor');
        $space['sightml'] = html2bbcode($space['sightml']);

        $vid = $_GET['vid'] ? intval($_GET['vid']) : 0;

        $privacy = $space['privacy']['profile'] ? $space['privacy']['profile'] : array();
        $_G['setting']['privacy'] = $_G['setting']['privacy'] ? $_G['setting']['privacy'] : array();
        $_G['setting']['privacy'] = is_array($_G['setting']['privacy']) ? $_G['setting']['privacy'] : dunserialize($_G['setting']['privacy']);
        $_G['setting']['privacy']['profile'] = !empty($_G['setting']['privacy']['profile']) ? $_G['setting']['privacy']['profile'] : array();
        $privacy = array_merge($_G['setting']['privacy']['profile'], $privacy);

        $actives = array('profile' =>' class="a"');
        $opactives = array($operation =>' class="a"');
        $allowitems = array();
        if(in_array($operation, array('base', 'contact', 'edu', 'work', 'info'))) {
                $allowitems = $profilegroup[$operation]['field'];
        } elseif($operation == 'verify') {
                if($vid == 0) {
                        foreach($_G['setting']['verify'] as $key => $setting) {
                                if($setting['available'] && (empty($setting['groupid']) || in_array($_G['groupid'], $setting['groupid']))) {
                                        $_GET['vid'] = $vid = $key;
                                        break;
                                }
                        }
                }

                if(empty($_G['setting']['verify'][$vid]['groupid']) || in_array($_G['groupid'], $_G['setting']['verify'][$vid]['groupid'])) {
                        $actives = array('verify' =>' class="a"');
                        $opactives = array($operation.$vid =>' class="a"');
                        $allowitems = $_G['setting']['verify'][$vid]['field'];
                }
        }
        $showbtn = ($vid && $verify['verify'.$vid] != 1) || empty($vid);
        if($vid) {
                if($value = C::t('common_member_verify_info')->fetch_by_uid_verifytype($_G['uid'], $vid)) {
                        $field = dunserialize($value['field']);
                        foreach($field as $key => $fvalue) {
                                $space[$key] = $fvalue;
                        }
                }
        }
        $htmls = $settings = array();
        foreach($allowitems as $fieldid) {
                if(!in_array($fieldid, array('sightml', 'customstatus', 'timeoffset'))) {
                        $html = profile_setting($fieldid, $space, $vid ? false : true);
                        if($html) {
                                $settings[$fieldid] = $_G['cache']['profilesetting'][$fieldid];
                                $htmls[$fieldid] = $html;
                        }
                }
        }

}

include template("home/spacecp_profile");

function profile_showerror($key, $extrainfo = '') {
        echo '<script>';
        echo 'parent.show_error("'.$key.'", "'.$extrainfo.'");';
        echo '</script>';
        exit();
}

function profile_showsuccess($message = '') {
        echo '<script type="text/javascript">';
        echo "parent.show_success('$message');";
        echo '</script>';
        exit();
}
回復

使用道具 舉報

14

主題

544

回帖

749

積分

自成一派

貢獻
29 點
金幣
29 個
板凳
發表于 2023-7-27 23:17:51 | 只看Ta
\template\模板\home\space_profile_body.htm
搜索:
  1. <ul id="pbbs" class="pf_l">
復制代碼

看到下面的內容,你應該就知道怎么改了
回復

使用道具 舉報

您需要登錄后才可以回帖 登錄 | 立即注冊

本版積分規則

  • 關注公眾號
  • 有償服務微信
  • 有償服務QQ

手機版|小黑屋|Discuz! 官方交流社區 ( 皖ICP備16010102號 |皖公網安備34010302002376號 )|網站地圖|star

GMT+8, 2025-10-21 02:18 , Processed in 0.059244 second(s), 10 queries , Redis On.

Powered by Discuz! X5.0 Licensed

© 2001-2025 Discuz! Team.

關燈 在本版發帖
有償服務QQ
有償服務微信
返回頂部
快速回復 返回頂部 返回列表
久久久久av_欧美日韩一区二区在线_国产精品三区四区_日韩中字在线
欧美一二区视频| 日韩一区二区三免费高清| 欧美亚洲一区二区在线| 成人免费一区二区三区视频| 国产精品一色哟哟哟| 欧美性高清videossexo| 性做久久久久久免费观看欧美| 精品96久久久久久中文字幕无| 久久久精品国产免大香伊| 国产精品一区二区在线播放 | 欧美日韩综合精品| 久久久久久久国产精品影院| 国产精品 日产精品 欧美精品| 欧美少妇bbb| 日本vs亚洲vs韩国一区三区| 色先锋资源久久综合| 亚洲成人av免费| 99国内精品| 亚洲日本va在线观看| 亚洲图片在线| 日韩理论在线观看| 欧美特黄视频| 国产精品伦理在线| 日本一区二区在线不卡| 91老师片黄在线观看| 久久综合久久99| av在线不卡电影| 欧美电影免费观看高清完整版在线| 国产尤物一区二区在线| 91精品国产综合久久久久久久久久 | 欧美裸体bbwbbwbbw| 极品瑜伽女神91| 91麻豆精品国产91久久久更新时间 | 亚洲欧美日韩在线播放| 一道本一区二区| 亚洲成av人片在www色猫咪| 久久婷婷人人澡人人喊人人爽| 天堂一区二区在线| 欧洲中文字幕精品| 国产曰批免费观看久久久| 日韩一区二区三区观看| 99精品视频在线免费观看| 久久噜噜亚洲综合| 国内揄拍国内精品久久| 亚洲美女免费在线| 亚洲欧美激情诱惑| 热久久免费视频| 欧美日韩视频在线第一区| 国产一区啦啦啦在线观看| 91精品国产综合久久久久久| 成人黄色小视频| 国产精品每日更新在线播放网址| 亚洲夜间福利| 亚洲高清三级视频| 欧美亚洲高清一区二区三区不卡| 国产激情精品久久久第一区二区| 久久久久久久久久美女| 国产字幕视频一区二区| 亚洲一区二区三区在线播放| 欧美伊人久久久久久久久影院| 国产乱码字幕精品高清av| 久久精品男人的天堂| 亚洲美女毛片| 久久精品久久99精品久久| 欧美成人猛片aaaaaaa| 亚洲视频碰碰| 日韩和欧美一区二区三区| 欧美一二三四区在线| 欧美午夜a级限制福利片| 亚洲一区二区免费视频| 欧美午夜片在线看| 成人深夜视频在线观看| 中文字幕va一区二区三区| 国产一区二区久久久| 国产在线精品不卡| 欧美国产丝袜视频| 久久亚洲影院| 国产69精品久久99不卡| 国产日产亚洲精品系列| 久久婷婷av| av在线免费不卡| 亚洲狠狠爱一区二区三区| 欧美日韩国产免费| 午夜国产精品视频| 亚洲国产精品欧美一二99| 7777精品伊人久久久大香线蕉完整版| 97se亚洲国产综合自在线观| 亚洲精品视频在线观看免费| 欧美群妇大交群的观看方式| 国产精品豆花视频| 免费在线观看一区| 国产日韩综合av| 色婷婷av一区二区三区软件| 成人免费看视频| 亚洲精品国产品国语在线app| 欧美性淫爽ww久久久久无| 91麻豆国产香蕉久久精品| 无码av中文一区二区三区桃花岛| 日韩一级免费观看| av不卡在线看| 国产精品一区二区久久不卡| 成人欧美一区二区三区视频网页 | 国产精品一区在线观看| 国产精品99久| 亚洲欧美另类久久久精品| 7777精品伊人久久久大香线蕉| 一区二区免费在线播放| 日韩免费看的电影| 国产伦精品一区二区三区| 成人app网站| 免费久久精品视频| 自拍av一区二区三区| 欧美巨大另类极品videosbest | 亚洲区国产区| 福利电影一区二区| 亚洲成av人片在线| 国产精品久线观看视频| 91麻豆精品国产91久久久久久久久 | 国产日韩欧美一区在线| 成人性生交大合| 午夜精品一区在线观看| 久久久久久久久99精品| 欧美日韩一区二区在线观看| 亚洲国产精品日韩| 成人app软件下载大全免费| 另类的小说在线视频另类成人小视频在线 | 男男gaygay亚洲| 亚洲精品视频在线看| 欧美电视剧免费全集观看| 一本色道久久综合精品竹菊| 国产一区视频观看| 成人黄色在线网站| 韩国成人在线视频| 亚洲成av人片观看| 亚洲特级片在线| 精品国产制服丝袜高跟| 色婷婷亚洲一区二区三区| 亚洲成人自拍视频| 94-欧美-setu| 国产一区二区美女| 日韩av在线播放中文字幕| 亚洲久本草在线中文字幕| 国产欧美一区二区三区网站| 欧美日韩国产免费一区二区| 性色av一区二区怡红| 亚洲午夜精品福利| eeuss鲁片一区二区三区在线观看| 免费观看在线综合| 一区二区三区欧美日韩| 国产精品理伦片| 久久综合狠狠综合| 56国语精品自产拍在线观看| 日本韩国视频一区二区| 国产精品色网| 亚洲日本免费| 午夜精品一区二区三区四区| 成人丝袜高跟foot| 国产在线不卡一区| 久久99九九99精品| 图片区小说区国产精品视频| 成人欧美一区二区三区小说| 久久精品一区蜜桃臀影院| 精品久久久久久久久久久久包黑料 | 国产精品综合二区| 精品一区二区三区视频在线观看 | 久久国产精品露脸对白| 亚洲韩国一区二区三区| 伊人开心综合网| 亚洲色图在线播放| 亚洲国产精华液网站w| 久久欧美中文字幕| 精品精品国产高清a毛片牛牛 | 欧美日韩中文国产| 91福利在线播放| 在线视频欧美精品| 色吧成人激情小说| 久久伊人一区二区| 欧美亚洲免费高清在线观看| 亚洲综合另类| 麻豆精品91| 色婷婷久久99综合精品jk白丝| 久久国产精品久久w女人spa| 美玉足脚交一区二区三区图片| 香蕉亚洲视频| 麻豆av一区二区三区| 久久久久久久久久久久久9999| 久久精品91| 欧洲亚洲国产日韩| 欧美日韩视频在线第一区| 在线91免费看| 欧美一级搡bbbb搡bbbb| 日韩欧美一区在线| 精品成人一区二区三区| 久久嫩草精品久久久久| 国产日韩欧美亚洲| 1024国产精品| 亚洲自拍偷拍图区| 日韩电影在线观看网站| 韩国成人在线视频| caoporen国产精品视频|