mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:02:54 +00:00
Fix typo in mod/profiles
This commit is contained in:
parent
ae7115894f
commit
102c44e8ee
1 changed files with 5 additions and 5 deletions
|
@ -338,7 +338,7 @@ function profiles_post(App $a) {
|
|||
|
||||
$hide_friends = (($_POST['hide-friends'] == 1) ? 1: 0);
|
||||
|
||||
PConfig::set(local_user(), 'system', 'detailled_profile', (($_POST['detailled_profile'] == 1) ? 1: 0));
|
||||
PConfig::set(local_user(), 'system', 'detailled_profile', (($_POST['detailed_profile'] == 1) ? 1: 0));
|
||||
|
||||
$changes = [];
|
||||
if ($is_default) {
|
||||
|
@ -535,18 +535,18 @@ function profiles_content(App $a) {
|
|||
$personal_account = !(in_array($a->user["page-flags"],
|
||||
[User::PAGE_FLAGS_COMMUNITY, User::PAGE_FLAGS_PRVGROUP]));
|
||||
|
||||
$detailled_profile = (PConfig::get(local_user(), 'system', 'detailled_profile') AND $personal_account);
|
||||
$detailed_profile = (PConfig::get(local_user(), 'system', 'detailled_profile') AND $personal_account);
|
||||
|
||||
$is_default = (($r[0]['is-default']) ? 1 : 0);
|
||||
$tpl = Renderer::getMarkupTemplate("profile_edit.tpl");
|
||||
$o .= Renderer::replaceMacros($tpl, [
|
||||
'$personal_account' => $personal_account,
|
||||
'$detailled_profile' => $detailled_profile,
|
||||
'$detailled_profile' => $detailed_profile,
|
||||
|
||||
'$details' => [
|
||||
'detailled_profile', //Name
|
||||
'detailed_profile', //Name
|
||||
L10n::t('Show more profile fields:'), //Label
|
||||
$detailled_profile, //Value
|
||||
$detailed_profile, //Value
|
||||
'', //Help string
|
||||
[L10n::t('No'), L10n::t('Yes')] //Off - On strings
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue