X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fdeletenotice.php;h=64746283ae5103f18b06823d095412711eeafca4;hb=803bdff3f67cce50931ce75dd209883a93a20bd3;hp=af620f036f18734bdad6412a84bd2b9eb0faf28b;hpb=dd55916d5671f910698499f0786f9a94d95f5977;p=quix0rs-gnu-social.git diff --git a/actions/deletenotice.php b/actions/deletenotice.php index af620f036f..64746283ae 100644 --- a/actions/deletenotice.php +++ b/actions/deletenotice.php @@ -44,7 +44,7 @@ class DeletenoticeAction extends DeleteAction { function show_form($error=NULL) { $user = common_current_user(); - common_show_header($this->get_title(), array($this, 'show_header'), NULL, + common_show_header($this->get_title(), array($this, 'show_header'), $error, array($this, 'show_top')); common_element_start('form', array('id' => 'notice_delete_form', 'method' => 'post', @@ -84,6 +84,9 @@ class DeletenoticeAction extends DeleteAction { $replies->get('notice_id', $notice_id); common_dequeue_notice($notice); + if (common_config('memcached', 'enabled')) { + $notice->blowSubsCache(); + } $replies->delete(); $notice->delete(); } else {