X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Ffeatures.php;h=74c110427ce6c8d87d02c1039bc59407d1960aa9;hb=1058b28ceabcec802932fc33bb79e6ce7814f945;hp=64ab932d00cef7bc8cd0491ae1cd6dadde11dca5;hpb=fc3c1601b1d8de58aff2457f6e116ea226c69ced;p=friendica.git diff --git a/include/features.php b/include/features.php index 64ab932d00..74c110427c 100644 --- a/include/features.php +++ b/include/features.php @@ -11,11 +11,6 @@ * @return boolean */ function feature_enabled($uid, $feature) { - - if (($feature == 'richtext') AND !get_app()->theme_richtext_editor) { - return false; - } - $x = get_config('feature_lock', $feature); if ($x === false) { @@ -35,7 +30,7 @@ function feature_enabled($uid, $feature) { /** * @brief check if feature is enabled or disabled by default - * + * * @param string $feature * @return boolean */ @@ -52,13 +47,13 @@ function get_feature_default($feature) { /** * @brief Get a list of all available features - * + * * The array includes the setting group, the setting name, * explainations for the setting and if it's enabled or disabled * by default - * + * * @param bool $filtered True removes any locked features - * + * * @return array */ function get_features($filtered = true) { @@ -77,7 +72,6 @@ function get_features($filtered = true) { // Post composition 'composition' => array( t('Post Composition Features'), - array('richtext', t('Richtext Editor'), t('Enable richtext editor'), false, get_config('feature_lock','richtext')), array('preview', t('Post Preview'), t('Allow previewing posts and comments before publishing them'), false, get_config('feature_lock','preview')), array('aclautomention', t('Auto-mention Forums'), t('Add/remove mention when a forum page is selected/deselected in ACL window.'), false, get_config('feature_lock','aclautomention')), ), @@ -142,11 +136,6 @@ function get_features($filtered = true) { } } - // Remove the richtext editor setting if the theme doesn't support it - if (!get_app()->theme_richtext_editor) { - unset($arr['composition'][1]); - } - call_hooks('get_features',$arr); return $arr; }