add sanity check for update category post counts method
This commit is contained in:
@@ -9,14 +9,14 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
Danbooru.PostModeration.hide_or_show_approve_and_disapprove_links = function() {
|
Danbooru.PostModeration.hide_or_show_approve_and_disapprove_links = function() {
|
||||||
if (Danbooru.meta("post-is-approvable") != "true") {
|
if (Danbooru.meta("post-is-approvable") !== "true") {
|
||||||
$("#approve").hide();
|
$("#approve").hide();
|
||||||
$("#disapprove").hide();
|
$("#disapprove").hide();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Danbooru.PostModeration.hide_or_show_delete_and_undelete_links = function() {
|
Danbooru.PostModeration.hide_or_show_delete_and_undelete_links = function() {
|
||||||
if (Danbooru.meta("post-is-deleted") == "true") {
|
if (Danbooru.meta("post-is-deleted") === "true") {
|
||||||
$("#delete").hide();
|
$("#delete").hide();
|
||||||
} else {
|
} else {
|
||||||
$("#undelete").hide();
|
$("#undelete").hide();
|
||||||
|
|||||||
@@ -98,8 +98,10 @@ class Tag < ActiveRecord::Base
|
|||||||
def update_category_post_counts
|
def update_category_post_counts
|
||||||
old_field = "tag_count_#{Danbooru.config.reverse_tag_category_mapping[category_was]}".downcase
|
old_field = "tag_count_#{Danbooru.config.reverse_tag_category_mapping[category_was]}".downcase
|
||||||
new_field = "tag_count_#{category_name}".downcase
|
new_field = "tag_count_#{category_name}".downcase
|
||||||
Post.without_timeout do
|
if old_field != new_field
|
||||||
Post.raw_tag_match(name).update_all("#{old_field} = #{old_field} - 1, #{new_field} = #{new_field} + 1")
|
Post.without_timeout do
|
||||||
|
Post.raw_tag_match(name).update_all("#{old_field} = #{old_field} - 1, #{new_field} = #{new_field} + 1")
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@@ -19,7 +19,7 @@
|
|||||||
<%= auto_discovery_link_tag :atom, posts_path(:format => "atom", :tags => params[:tags]) %>
|
<%= auto_discovery_link_tag :atom, posts_path(:format => "atom", :tags => params[:tags]) %>
|
||||||
<%= stylesheet_link_tag "application", :media => "screen" %>
|
<%= stylesheet_link_tag "application", :media => "screen" %>
|
||||||
<%= javascript_include_tag "application" %>
|
<%= javascript_include_tag "application" %>
|
||||||
<%= Danbooru.config.custom_html_header_content %>
|
<%= raw Danbooru.config.custom_html_header_content %>
|
||||||
<%= yield :html_header %>
|
<%= yield :html_header %>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
Reference in New Issue
Block a user