]> git.mxchange.org Git - friendica.git/commitdiff
Rename social.disable_cw pconfig to system.disable_cw
authorHypolite Petovan <mrpetovan@gmail.com>
Thu, 5 Apr 2018 02:53:55 +0000 (22:53 -0400)
committerHypolite Petovan <mrpetovan@gmail.com>
Thu, 5 Apr 2018 03:08:48 +0000 (23:08 -0400)
include/conversation.php
include/text.php
mod/settings.php
src/Object/Post.php

index 9647fac35f1e135ad67b1ef2332a7efabae76167..1b5f5a0983d9b1488977e9818928edc8bb1eb65b 100644 (file)
@@ -757,7 +757,7 @@ function conversation(App $a, $items, $mode, $update, $preview = false, $order =
 
                                $profile_name_e = $profile_name;
 
-                               if (!empty($item['content-warning']) && PConfig::get(local_user(), 'social', 'disable_cw', false)) {
+                               if (!empty($item['content-warning']) && PConfig::get(local_user(), 'system', 'disable_cw', false)) {
                                        $title_e = ucfirst($item['content-warning']);
                                } else {
                                        $title_e = $item['title'];
index 8a6fd003129456c944117c42a9c9799c09458196..6522ada1c39b2d837599a57ae493d532df216e70 100644 (file)
@@ -1271,7 +1271,7 @@ function prepare_body(array &$item, $attach = false, $is_preview = false)
        // Compile eventual content filter reasons
        $filter_reasons = [];
        if (!$is_preview && !($item['self'] && local_user() == $item['uid'])) {
-               if (!empty($item['content-warning']) && (!local_user() || !PConfig::get(local_user(), 'social', 'disable_cw', false))) {
+               if (!empty($item['content-warning']) && (!local_user() || !PConfig::get(local_user(), 'system', 'disable_cw', false))) {
                        $filter_reasons[] = L10n::t('Content warning: %s', $item['content-warning']);
                }
 
index 3850c095b25dcaa60cbbb5eda4bf498d085c6df3..24aa43de61b22137b2a949d6862197726aa12815 100644 (file)
@@ -212,7 +212,7 @@ function settings_post(App $a)
                check_form_security_token_redirectOnErr('/settings/connectors', 'settings_connectors');
 
                if (x($_POST, 'general-submit')) {
-                       PConfig::set(local_user(), 'social', 'disable_cw', intval($_POST['disable_cw']));
+                       PConfig::set(local_user(), 'system', 'disable_cw', intval($_POST['disable_cw']));
                        PConfig::set(local_user(), 'system', 'no_intelligent_shortening', intval($_POST['no_intelligent_shortening']));
                        PConfig::set(local_user(), 'system', 'ostatus_autofriend', intval($_POST['snautofollow']));
                        PConfig::set(local_user(), 'ostatus', 'default_group', $_POST['group-selection']);
@@ -787,7 +787,7 @@ function settings_content(App $a)
        }
 
        if (($a->argc > 1) && ($a->argv[1] === 'connectors')) {
-               $disable_cw                = intval(PConfig::get(local_user(), 'social', 'disable_cw'));
+               $disable_cw                = intval(PConfig::get(local_user(), 'system', 'disable_cw'));
                $no_intelligent_shortening = intval(PConfig::get(local_user(), 'system', 'no_intelligent_shortening'));
                $ostatus_autofriend        = intval(PConfig::get(local_user(), 'system', 'ostatus_autofriend'));
                $default_group             = PConfig::get(local_user(), 'ostatus', 'default_group');
index f47efbecd24ac4ffbe4f5da53600f97f83b2b25a..86e1414678e7bb7e76b9675139618a08d893bb0a 100644 (file)
@@ -317,7 +317,7 @@ class Post extends BaseObject
                $text_e       = strip_tags($body);
                $name_e       = $profile_name;
 
-               if (!empty($item['content-warning']) && PConfig::get(local_user(), 'social', 'disable_cw', false)) {
+               if (!empty($item['content-warning']) && PConfig::get(local_user(), 'system', 'disable_cw', false)) {
                        $title_e = ucfirst($item['content-warning']);
                } else {
                        $title_e = $item['title'];