From b98ec458fc8fece9dda924490c5312c97ba83ab5 Mon Sep 17 00:00:00 2001 From: jeena Date: Wed, 10 Apr 2013 10:54:38 +0200 Subject: [PATCH] fixed problem with removing posts --- WebKit/scripts/helper/Core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WebKit/scripts/helper/Core.js b/WebKit/scripts/helper/Core.js index 6d987ab..f0f93a3 100644 --- a/WebKit/scripts/helper/Core.js +++ b/WebKit/scripts/helper/Core.js @@ -901,7 +901,7 @@ function(jQuery, Paths, URI, HostApp, Cache) { } Core.prototype.postDeleted = function(post_id, entity) { - var li = document.getElementById("post-" + post_id); + var li = document.getElementById("post-" + post_id + "-" + this.action); if (li) { if (li.parentNode == this.body) { this.body.removeChild(li);