]> git.mxchange.org Git - friendica.git/commitdiff
Fix disabled content filter for own posts
authorHypolite Petovan <mrpetovan@gmail.com>
Sun, 1 Apr 2018 19:15:05 +0000 (15:15 -0400)
committerHypolite Petovan <mrpetovan@gmail.com>
Thu, 5 Apr 2018 03:08:48 +0000 (23:08 -0400)
include/text.php

index 3ce6c89aaaa0ca8615d171d1f5b5096f4f015872..b1a9f70d02d5f55a80cfe4f956f8457cdd888039 100644 (file)
@@ -1270,7 +1270,7 @@ function prepare_body(array &$item, $attach = false, $is_preview = false)
 
        // Compile eventual content filter reasons
        $filter_reasons = [];
-       if (!$is_preview && !$item['self']) {
+       if (!$is_preview && !($item['self'] && local_user() == $item['uid'])) {
                if (!empty($item['content-warning']) && (!local_user() || !PConfig::get(local_user(), 'social', 'disable_cw', false))) {
                        $filter_reasons[] = L10n::t('Content warning: %s', $item['content-warning']);
                }
@@ -1305,9 +1305,7 @@ function prepare_body(array &$item, $attach = false, $is_preview = false)
        $s = $hook_data['html'];
        unset($hook_data);
 
-       if (!$is_preview && !$item['self']) {
-               $s = apply_content_filter($s, $filter_reasons);
-       }
+       $s = apply_content_filter($s, $filter_reasons);
 
        if (! $attach) {
                // Replace the blockquotes with quotes that are used in mails.