Merge branch 'kcaptcha' of github.com:gnuboard/g5 into kcaptcha

Conflicts:
	config.php
	mobile/skin/member/basic/register_form.skin.php
This commit is contained in:
gnuboard
2013-10-15 11:54:31 +09:00
115 changed files with 6611 additions and 5408 deletions

View File

@ -9,6 +9,19 @@ $(function(){
$('#captcha_img').attr('src', g5_captcha_url+'/kcaptcha_image.php?t=' + (new Date).getTime());
}
});
$.ajax({
type: 'POST',
url: g5_captcha_url+'/kcaptcha_mp3.php',
cache: false,
async: false,
success: function(url) {
if (url) {
mp3_url = url + "?t="+new Date().getTime();
$("#captcha_audio").attr("src", mp3_url);
}
}
});
}).trigger("click");
var mp3_url = "";