댓글의 댓글 작성시 캡챠 출력되지 않는 오류 수정
This commit is contained in:
@ -141,7 +141,7 @@ var char_max = parseInt(<?php echo $comment_max ?>); // 최대
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
var save_before = '';
|
var save_before = '';
|
||||||
var save_html = document.getElementById('bo_vc_w').innerHTML;
|
var save_html;
|
||||||
|
|
||||||
function good_and_write()
|
function good_and_write()
|
||||||
{
|
{
|
||||||
@ -262,6 +262,8 @@ var char_max = parseInt(<?php echo $comment_max ?>); // 최대
|
|||||||
|
|
||||||
if (save_before != el_id)
|
if (save_before != el_id)
|
||||||
{
|
{
|
||||||
|
save_html = document.getElementById('bo_vc_w').innerHTML;
|
||||||
|
|
||||||
if (save_before)
|
if (save_before)
|
||||||
{
|
{
|
||||||
document.getElementById(save_before).style.display = 'none';
|
document.getElementById(save_before).style.display = 'none';
|
||||||
|
|||||||
@ -141,7 +141,7 @@ var char_max = parseInt(<?php echo $comment_max ?>); // 최대
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
var save_before = '';
|
var save_before = '';
|
||||||
var save_html = document.getElementById('bo_vc_w').innerHTML;
|
var save_html;
|
||||||
|
|
||||||
function good_and_write()
|
function good_and_write()
|
||||||
{
|
{
|
||||||
@ -262,6 +262,8 @@ var char_max = parseInt(<?php echo $comment_max ?>); // 최대
|
|||||||
|
|
||||||
if (save_before != el_id)
|
if (save_before != el_id)
|
||||||
{
|
{
|
||||||
|
save_html = document.getElementById('bo_vc_w').innerHTML;
|
||||||
|
|
||||||
if (save_before)
|
if (save_before)
|
||||||
{
|
{
|
||||||
document.getElementById(save_before).style.display = 'none';
|
document.getElementById(save_before).style.display = 'none';
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
$(function(){
|
$(function(){
|
||||||
var mp3_url = "";
|
var mp3_url = "";
|
||||||
|
|
||||||
$("#captcha_reload").bind("click", function(){
|
$("#captcha_reload").live("click", function(){
|
||||||
$.ajax({
|
$.ajax({
|
||||||
type: 'POST',
|
type: 'POST',
|
||||||
url: g5_captcha_url+'/kcaptcha_session.php',
|
url: g5_captcha_url+'/kcaptcha_session.php',
|
||||||
@ -26,7 +26,7 @@ $(function(){
|
|||||||
});
|
});
|
||||||
}).trigger("click");
|
}).trigger("click");
|
||||||
|
|
||||||
$("#captcha_mp3").click(function(){
|
$("#captcha_mp3").live("click", function(){
|
||||||
$("body").css("cursor", "wait");
|
$("body").css("cursor", "wait");
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
|
|||||||
@ -159,7 +159,7 @@ var char_max = parseInt(<?php echo $comment_max ?>); // 최대
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
var save_before = '';
|
var save_before = '';
|
||||||
var save_html = document.getElementById('bo_vc_w').innerHTML;
|
var save_html;
|
||||||
|
|
||||||
function good_and_write()
|
function good_and_write()
|
||||||
{
|
{
|
||||||
@ -270,6 +270,8 @@ function comment_box(comment_id, work)
|
|||||||
|
|
||||||
if (save_before != el_id)
|
if (save_before != el_id)
|
||||||
{
|
{
|
||||||
|
save_html = document.getElementById('bo_vc_w').innerHTML;
|
||||||
|
|
||||||
if (save_before)
|
if (save_before)
|
||||||
{
|
{
|
||||||
document.getElementById(save_before).style.display = 'none';
|
document.getElementById(save_before).style.display = 'none';
|
||||||
|
|||||||
@ -159,7 +159,7 @@ var char_max = parseInt(<?php echo $comment_max ?>); // 최대
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
var save_before = '';
|
var save_before = '';
|
||||||
var save_html = document.getElementById('bo_vc_w').innerHTML;
|
var save_html;
|
||||||
|
|
||||||
function good_and_write()
|
function good_and_write()
|
||||||
{
|
{
|
||||||
@ -270,6 +270,8 @@ function comment_box(comment_id, work)
|
|||||||
|
|
||||||
if (save_before != el_id)
|
if (save_before != el_id)
|
||||||
{
|
{
|
||||||
|
save_html = document.getElementById('bo_vc_w').innerHTML;
|
||||||
|
|
||||||
if (save_before)
|
if (save_before)
|
||||||
{
|
{
|
||||||
document.getElementById(save_before).style.display = 'none';
|
document.getElementById(save_before).style.display = 'none';
|
||||||
|
|||||||
Reference in New Issue
Block a user