aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Profile.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-01-15 20:58:31 +0000
committerMario <mario@mariovavti.com>2021-01-15 20:58:31 +0000
commit60b76c53fc9d4261527f4759e16b06a0b82b3d9f (patch)
treec859fd994ed31b2de23a48f1e05f688d7b230f89 /Zotlabs/Module/Profile.php
parente55ea8b126f3da4c119513b018ea8d939fcd3a9f (diff)
downloadvolse-hubzilla-60b76c53fc9d4261527f4759e16b06a0b82b3d9f.tar.gz
volse-hubzilla-60b76c53fc9d4261527f4759e16b06a0b82b3d9f.tar.bz2
volse-hubzilla-60b76c53fc9d4261527f4759e16b06a0b82b3d9f.zip
fix undefined var
Diffstat (limited to 'Zotlabs/Module/Profile.php')
-rw-r--r--Zotlabs/Module/Profile.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Profile.php b/Zotlabs/Module/Profile.php
index 4235f0b97..0373630a9 100644
--- a/Zotlabs/Module/Profile.php
+++ b/Zotlabs/Module/Profile.php
@@ -90,7 +90,7 @@ class Profile extends \Zotlabs\Web\Controller {
if(argc() > 2 && argv(2) === 'vcard') {
header('Content-type: text/vcard');
- header('content-disposition: attachment; filename="' . t('vcard') . '-' . $profile['channel_address'] . '.vcf"' );
+ header('content-disposition: attachment; filename="' . t('vcard') . '-' . \App::$profile['channel_address'] . '.vcf"' );
echo \App::$profile['profile_vcard'];
killme();
}