취소 경로 수정

This commit is contained in:
gnuboard
2013-07-15 11:46:43 +09:00
parent ca925cdaaf
commit 11d9185a6a

View File

@ -235,7 +235,7 @@ if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
작성하신 내용를 발송하시려면 <strong><?php echo $w==''?'회원가입':'정보수정'; ?></strong> 버튼을, 작성을 취소하고 창을 닫으시려면 <strong>취소</strong> 링크를 누르세요.
</p>
<input type="submit" value="<?php echo $w==''?'회원가입':'정보수정'; ?>" id="btn_submit" class="btn_submit" accesskey="s">
<a href="<?php echo $g4['path'] ?>/" class="btn_cancel">취소</a>
<a href="<?php echo G4_URL ?>" class="btn_cancel">취소</a>
</div>
</form>
@ -358,33 +358,6 @@ function fregisterform_submit(f)
}
}
/*
if (typeof(f.mb_hp) != "undefined" && f.mb_hp.value) {
var error = "";
$.ajax({
url: "<?php echo G4_KCPCERT_URL ?>/kcpcert.ajax.php",
type: "POST",
data: {
"w": f.w.value,
"mb_name": f.mb_name.value,
"mb_hp": f.mb_hp.value,
"old_mb_hp":f.old_mb_hp.value
},
dataType: "json",
async: false,
cache: false,
success: function(data, textStatus) {
error = data.error;
}
});
if (error) {
alert(error);
return false;
}
}
*/
<?php echo chk_captcha_js(); ?>
document.getElementById("btn_submit").disabled = "disabled";