blacklists: remove ability for mods to blacklist uploaders by name.

This commit is contained in:
evazion
2020-02-16 03:51:48 -06:00
parent b591353773
commit caf54fe45a
5 changed files with 2 additions and 14 deletions

View File

@@ -152,9 +152,6 @@ Blacklist.post_match = function(post, entry) {
var tags = String($post.attr("data-tags")).match(/\S+/g) || [];
tags = tags.concat(String($post.attr("data-pools")).match(/\S+/g) || []);
tags.push("rating:" + $post.data("rating"));
if ($post.attr("data-uploader")) {
tags.push("user:" + $post.attr("data-uploader").toLowerCase());
}
tags.push("uploaderid:" + $post.attr("data-uploader-id"));
$.each(String($post.data("flags")).match(/\S+/g) || [], function(i, v) {
tags.push("status:" + v);