aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Profiles.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-03-14 10:24:08 +0100
committerMario Vavti <mario@mariovavti.com>2018-03-14 10:24:08 +0100
commit75721b7e8242701cc690a635175b8ef63ddba4fe (patch)
treef7983231638f1dffe7efdef5de7fdc2ea35980a5 /Zotlabs/Module/Profiles.php
parentfa3e7a574fdfef87f86dc89fbb30bbfef7e98463 (diff)
downloadvolse-hubzilla-75721b7e8242701cc690a635175b8ef63ddba4fe.tar.gz
volse-hubzilla-75721b7e8242701cc690a635175b8ef63ddba4fe.tar.bz2
volse-hubzilla-75721b7e8242701cc690a635175b8ef63ddba4fe.zip
reveal the profile name field only if multi prifiles feature is enabled
Diffstat (limited to 'Zotlabs/Module/Profiles.php')
-rw-r--r--Zotlabs/Module/Profiles.php11
1 files changed, 4 insertions, 7 deletions
diff --git a/Zotlabs/Module/Profiles.php b/Zotlabs/Module/Profiles.php
index fad16cb04..e02cb33db 100644
--- a/Zotlabs/Module/Profiles.php
+++ b/Zotlabs/Module/Profiles.php
@@ -655,7 +655,7 @@ class Profiles extends \Zotlabs\Web\Controller {
intval($id),
intval(local_channel())
);
- if(! count($r)) {
+ if(! $r) {
notice( t('Profile not found.') . EOL);
return;
}
@@ -712,13 +712,10 @@ class Profiles extends \Zotlabs\Web\Controller {
$tpl = get_markup_template("profile_edit.tpl");
$o .= replace_macros($tpl,array(
-
+ '$multi_profiles' => ((feature_enabled(local_channel(),'multi_profiles')) ? true : false),
'$form_security_token' => get_form_security_token("profile_edit"),
- '$profile_clone_link' => ((feature_enabled(local_channel(),'multi_profiles')) ? 'profiles/clone/' . $r[0]['id'] . '?t='
- . get_form_security_token("profile_clone") : ''),
- '$profile_drop_link' => 'profiles/drop/' . $r[0]['id'] . '?t='
- . get_form_security_token("profile_drop"),
-
+ '$profile_clone_link' => 'profiles/clone/' . $r[0]['id'] . '?t=' . get_form_security_token("profile_clone"),
+ '$profile_drop_link' => 'profiles/drop/' . $r[0]['id'] . '?t=' . get_form_security_token("profile_drop"),
'$fields' => $fields,
'$vcard' => $vcard,
'$guid' => $r[0]['profile_guid'],