additional_plugins/serendipity_event_spamblock_bayes/bayes_commentlist.js

11 lines
290 B
JavaScript

function spam(commentID) {
$.post(learncommentPath, {id: commentID, category: 'spam'}).done(function() {
location.reload();
});
}
function ham(commentID) {
$.post(learncommentPath, {id: commentID, category: 'ham'}).done(function() {
location.reload();
});
}