From c21543db951c0567fde1ca7314b4fed42aa4718c Mon Sep 17 00:00:00 2001 From: Toks Date: Sat, 31 Aug 2013 12:13:46 -0400 Subject: [PATCH] Fix undefined error when using tag scripts --- app/assets/javascripts/posts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/posts.js b/app/assets/javascripts/posts.js index e8c0322f5..a59a94d2c 100644 --- a/app/assets/javascripts/posts.js +++ b/app/assets/javascripts/posts.js @@ -559,7 +559,7 @@ if (Danbooru.Post.pending_update_count < 1) { Danbooru.notice("Posts updated"); } else { - Danbooru.notice("Updating posts (" + Post.pending_update_count + " pending)..."); + Danbooru.notice("Updating posts (" + Danbooru.Post.pending_update_count + " pending)..."); } } }