aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/styles/prosilver/template/ajax.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/ajax.js b/phpBB/styles/prosilver/template/ajax.js
index efa1feb9cc..722295c65d 100644
--- a/phpBB/styles/prosilver/template/ajax.js
+++ b/phpBB/styles/prosilver/template/ajax.js
@@ -7,7 +7,7 @@ phpbb.add_ajax_callback('post_delete', function() {
if (el.data('refresh') === undefined)
{
var post_id = el[0].href.split('&p=')[1];
- el.parents('div #p' + post_id).fadeOut(function() {
+ el.parents('#p' + post_id).fadeOut(function() {
$(this).remove();
});
}