Skip to content

Commit

Permalink
fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kwpolska committed Apr 24, 2012
1 parent 5bfb2da commit fc9b445
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/media/js/vfbp.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ function vfbpauth() {
});
$.post("http://kwpolska.tk/contact/antibot.php",
{'json': '{"vfbpjs": "auth", "token" = "'+$('[name="vfbpjstoken"]').val()+'"}'},
function(jsondata) {
data = $.parseJSON(jsondata);
if(data.auth == "true") {
function(data) {
var rdata = $.parseJSON(data);
if(rdata.auth == "true") {
$('#vfbpjsresults').html = 'Authenticated as a human being! (or a bot with JS support)';
$('[name="vfbpq"]').val('[ignored]');
} else {
Expand Down

0 comments on commit fc9b445

Please sign in to comment.