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

Discuz! 官方交流社區(qū)

標(biāo)題: 個人資料注冊時間,怎么僅管理員可見,或者管理員正常顯示,其它用戶加密顯示******這樣子 [打印本頁]

作者: amw123456789    時間: 2023-7-24 13:08
標(biāo)題: 個人資料注冊時間,怎么僅管理員可見,或者管理員正常顯示,其它用戶加密顯示******這樣子
個人資料注冊時間,怎么僅管理員可見,或者管理員正常顯示,其它用戶加密顯示******這樣子



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


作者: amw123456789    時間: 2023-7-24 13:08
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();
}

作者: babyfacer    時間: 2023-7-27 23:17
\template\模板\home\space_profile_body.htm
搜索:
  1. <ul id="pbbs" class="pf_l">
復(fù)制代碼

看到下面的內(nèi)容,你應(yīng)該就知道怎么改了




歡迎光臨 Discuz! 官方交流社區(qū) (http://www.9999xn.com/) Powered by Discuz! X5.0
久久久久av_欧美日韩一区二区在线_国产精品三区四区_日韩中字在线
精品视频全国免费看| 夜久久久久久| 一区二区三区高清视频在线观看| 欧美一区二区在线免费播放| 五月天精品一区二区三区| 亚洲手机视频| 日本一区二区视频在线| 成人综合婷婷国产精品久久免费| 在线观看一区二区精品视频| 亚洲国产美国国产综合一区二区| 亚洲精品乱码| 亚洲视频网在线直播| 欧美69wwwcom| 欧美大片一区二区| 国产精品一品二品| 精品视频一区三区九区| 午夜a成v人精品| 亚洲一区视频| 一区二区三区在线影院| 激情综合激情| 国产精品国产三级国产aⅴ无密码 国产精品国产三级国产aⅴ原创 | 久久精品72免费观看| 91国偷自产一区二区开放时间| 亚洲天堂a在线| 伊人久久亚洲影院| 亚洲精品视频自拍| 国产欧美欧美| 亚洲成人三级小说| 色94色欧美sute亚洲线路一久 | 影音先锋久久| 一区二区三区自拍| 国产精品乱子乱xxxx| 一区二区三区在线影院| 久久久久91| 极品尤物av久久免费看| 日韩一级大片在线观看| 国产98色在线|日韩| 欧美va亚洲va| 91女厕偷拍女厕偷拍高清| 国产欧美一区二区在线观看| 欧美激情第8页| 日韩伦理av电影| 国产精品久久亚洲7777| 亚洲国产婷婷综合在线精品| 久久国产手机看片| 奇米色一区二区三区四区| 欧美日韩国产三级| 成人国产电影网| 国产精品国产自产拍高清av王其| 国产精品久久久久久久免费软件| 天天影视网天天综合色在线播放| 美脚丝袜一区二区三区在线观看| 蜜臀久久99精品久久久久久9 | 欧美性淫爽ww久久久久无| 国产精品18久久久久久久久| 久久网站热最新地址| 国产在线日韩| 婷婷激情综合网| 欧美精品久久久久久久久老牛影院| 成人av电影免费在线播放| 国产精品国产自产拍高清av王其| 久久精精品视频| 国产精品1024| 久久久99精品久久| 伊人婷婷久久| 日本中文字幕一区| 日韩欧美激情一区| 一区二区视频在线观看| 亚洲成a天堂v人片| 欧美一区二区美女| 国产精品videosex极品| 亚洲国产中文字幕在线视频综合| 欧美三区在线观看| 91香蕉国产在线观看软件| 亚洲精品国产视频| 欧美亚洲禁片免费| 99re亚洲国产精品| 伊人婷婷欧美激情| 精品视频一区二区不卡| 99re热视频精品| 亚洲人成精品久久久久| 在线一区二区三区四区| 成人激情免费电影网址| 国产精品电影一区二区| 色天使久久综合网天天| av综合在线播放| 一区二区三区四区av| 在线91免费看| 亚洲欧洲日韩综合二区| 国产一区高清在线| 综合久久一区二区三区| 精品视频在线看| 亚洲一级电影| 国产一区在线看| 亚洲免费观看高清完整版在线观看| 在线中文字幕一区| 红桃视频国产精品| 久久超碰97中文字幕| 日本一区二区成人| 欧美在线一区二区三区| 欧美激情精品久久久六区热门| 秋霞国产午夜精品免费视频| 久久精品水蜜桃av综合天堂| 在线视频一区二区三区| 国模大胆一区二区三区| 国产一区二区在线视频| 伊人婷婷欧美激情| 日韩区在线观看| 性色一区二区三区| 99视频一区二区| 午夜私人影院久久久久| 久久久亚洲高清| 在线观看不卡一区| 欧美三级特黄| 国产麻豆精品95视频| 亚洲激情图片小说视频| 精品理论电影在线观看| 模特精品在线| 午夜精品剧场| 国产一区免费电影| 亚洲国产欧美日韩另类综合| 久久久www成人免费无遮挡大片| 欧美专区亚洲专区| 亚洲国内在线| 99久久精品国产网站| 美女网站一区二区| 亚洲视频你懂的| 2021中文字幕一区亚洲| 欧美在线综合视频| 在线视频精品一区| 欧美一区二视频在线免费观看| 蜜桃久久av一区| 依依成人精品视频| 国产视频在线观看一区二区三区| 欧美精品在线一区二区三区| 久久国产精品久久精品国产| 91浏览器在线视频| 国产成人日日夜夜| 久久精品国产色蜜蜜麻豆| 亚洲影视资源网| 国产三级精品视频| 日韩亚洲欧美一区二区三区| 狂野欧美一区| 亚洲激情视频| 欧美在线观看天堂一区二区三区| 国产毛片一区二区| 天堂va蜜桃一区二区三区漫画版| 国产精品久久久久久久久快鸭| 日韩欧美国产综合| 欧美日韩国产片| 色婷婷精品久久二区二区蜜臀av| 99香蕉国产精品偷在线观看| 欧美日韩国产免费观看 | 伊人久久亚洲影院| 91香蕉视频污在线| 床上的激情91.| 国产乱人伦偷精品视频免下载| 日本系列欧美系列| 亚洲午夜精品在线| 亚洲免费在线视频| 国产精品美女www爽爽爽| 精品粉嫩超白一线天av| 欧美福利一区二区| 色狠狠色噜噜噜综合网| 免费在线国产精品| 国产精品乱子乱xxxx| 在线看片一区| 狠狠干综合网| 国产精品大片免费观看| 国产白丝网站精品污在线入口| 韩国毛片一区二区三区| 蜜桃av一区二区三区电影| 亚欧色一区w666天堂| 亚洲自拍偷拍图区| 一区二区三区四区国产精品| 日韩码欧中文字| 亚洲三级免费观看| 综合亚洲深深色噜噜狠狠网站| 国产精品三级av| 国产精品久久久久久久久免费丝袜| 日本一二三不卡| 中文字幕电影一区| 国产精品盗摄一区二区三区| 国产精品久久久久久久午夜片| 久久精品在这里| 国产精品视频你懂的| 国产精品久久久久久妇女6080| 国产精品久久国产精麻豆99网站| 欧美国产日韩一二三区| 国产精品女上位| 国产精品久久久久久久第一福利| 国产精品拍天天在线| 亚洲欧洲性图库| 亚洲精选视频免费看| 亚洲午夜久久久久久久久电影网| 性欧美大战久久久久久久久| 午夜a成v人精品| 卡一卡二国产精品| 国产一区高清在线| 成人中文字幕合集|