fixes #1462
This commit is contained in:
@@ -106,9 +106,9 @@
|
||||
}
|
||||
|
||||
var $post = $(post);
|
||||
var tags = String($post.data("tags")).match(/\S+/g) || [];
|
||||
var tags = String($post.attr("data-tags")).match(/\S+/g) || [];
|
||||
tags.push("rating:" + $post.data("rating"));
|
||||
tags.push("user:" + $post.data("user"));
|
||||
tags.push("user:" + $post.attr("data-uploader").toLowerCase().replace(/ /g, "_"));
|
||||
$.each(String($post.data("flags")).match(/\S+/g) || [], function(i, v) {
|
||||
tags.push("status:" + v);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user