From: rebeka-catalina Date: Sat, 8 Apr 2017 13:48:15 +0000 (+0200) Subject: Correction of 1177 and added modification to 1171 X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=895a6254a0065acd93fb49ad4220886342a9dd22;p=friendica.git Correction of 1177 and added modification to 1171 --- diff --git a/mod/settings.php b/mod/settings.php index d6eacbd4e3..6dae149b8b 100644 --- a/mod/settings.php +++ b/mod/settings.php @@ -1168,14 +1168,13 @@ function settings_content(App $a) { $profile_in_dir = ''; } else { $profile_in_dir = replace_macros($opt_tpl,array( - '$field' => array('profile_in_directory', t('Publish your default profile in your local site directory?'), $profile['publish'], '', array(t('No'),t('Yes'))), + '$field' => array('profile_in_directory', t('Publish your default profile in your local site directory?'), $profile['publish'], t("Depending on the server settings your profile may be visible in public."), array(t('No'),t('Yes'))), )); } if (strlen(get_config('system','directory'))) { $profile_in_net_dir = replace_macros($opt_tpl,array( - '$field' => array('profile_in_netdirectory', t('Publish your default profile in the global social directory?'), $profile_in_directory, t("Depending on the server settings your profile may be visible in public."), $profile['net-publish'], '', array(t('No'),t('Yes'))), - )); + '$field' => array('profile_in_netdirectory', t('Publish your default profile in the global social directory?'), $profile['net-publish'], '', array(t('No'),t('Yes'))),)); } else { $profile_in_net_dir = ''; }