From 1f773795b869de7ad46804758c13cd304471e4e1 Mon Sep 17 00:00:00 2001 From: chicpro Date: Fri, 1 Feb 2013 14:07:38 +0900 Subject: [PATCH] =?UTF-8?q?=ED=9A=8C=EC=9B=90=EA=B0=80=EC=9E=85=EC=8B=9C?= =?UTF-8?q?=20=EC=95=84=EC=9D=B4=EB=94=94=ED=95=84=EB=93=9C=EC=97=90=20rea?= =?UTF-8?q?donly=20=EC=B6=94=EA=B0=80=EB=90=98=EB=8D=98=20=EC=98=A4?= =?UTF-8?q?=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bbs/register_form.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bbs/register_form.php b/bbs/register_form.php index 0b5cc73aa..c204af0e1 100644 --- a/bbs/register_form.php +++ b/bbs/register_form.php @@ -44,7 +44,7 @@ if ($w == "") { } else if ($w == 'u') { - if ($is_admin) + if ($is_admin) alert('관리자의 회원정보는 관리자 화면에서 수정해 주십시오.', $g4['url']); if (!$member[mb_id]) @@ -108,9 +108,9 @@ $mb_icon = G4_PATH.'/data/member/'.substr($member['mb_id'],0,2).'/'.$member['mb_ $register_action_url = G4_HTTPS_BBS_URL.'/register_form_update.php'; $req_nick = !isset($member['mb_nick_date']) || (isset($member['mb_nick_date']) && $member['mb_nick_date'] <= date("Y-m-d", $g4['server_time'] - ($config['cf_nick_modify'] * 86400))); $required = ($w=='') ? 'required' : ''; -$readonly = ($w=='') ? 'readonly' : ''; +$readonly = ($w=='u') ? 'readonly' : ''; -$captcha_html = captcha_html(); +$captcha_html = captcha_html(); include_once($member_skin_path.'/register_form.skin.php'); include_once('./_tail.php');