additional_plugins/serendipity_event_spamblock_bayes/bayes_commentlist.js

11 lines
290 B
JavaScript
Raw Permalink Normal View History

function spam(commentID) {
$.post(learncommentPath, {id: commentID, category: 'spam'}).done(function() {
location.reload();
});
2011-12-13 12:29:05 +01:00
}
function ham(commentID) {
$.post(learncommentPath, {id: commentID, category: 'ham'}).done(function() {
location.reload();
});
}