From 792b4f63e7a95dcb9017ceed03a5f27980c3286c Mon Sep 17 00:00:00 2001 From: friendica Date: Wed, 26 Dec 2012 13:20:18 -0800 Subject: [PATCH] remove dashes from variable names in profile_vcard.tpl --- boot.php | 7 ++++++- view/profile_vcard.tpl | 4 ++-- view/smarty3/profile_vcard.tpl | 4 ++-- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/boot.php b/boot.php index 77be9ac26..1d4300889 100644 --- a/boot.php +++ b/boot.php @@ -1345,12 +1345,17 @@ if(! function_exists('profile_sidebar')) { $tpl = get_markup_template('profile_vcard.tpl'); + $p = array(); + foreach($profile as $k => $v) { + $k = str_replace('-','_',$k); + $p[$k] = $v; + } if($a->theme['template_engine'] === 'internal') $location = template_escape($location); $o .= replace_macros($tpl, array( - '$profile' => $profile, + '$profile' => $p, '$connect' => $connect, '$wallmessage' => $wallmessage, '$location' => $location, diff --git a/view/profile_vcard.tpl b/view/profile_vcard.tpl index d1e684795..6e137f28f 100644 --- a/view/profile_vcard.tpl +++ b/view/profile_vcard.tpl @@ -16,9 +16,9 @@ $profile.locality{{ if $profile.locality }}, {{ endif }} $profile.region - $profile.postal-code + $profile.postal_code - {{ if $profile.country-name }}$profile.country-name{{ endif }} + {{ if $profile.country_name }}$profile.country_name{{ endif }} {{ endif }} diff --git a/view/smarty3/profile_vcard.tpl b/view/smarty3/profile_vcard.tpl index 86f25fe05..4e3b1f366 100644 --- a/view/smarty3/profile_vcard.tpl +++ b/view/smarty3/profile_vcard.tpl @@ -16,9 +16,9 @@ {{$profile.locality}}{{if $profile.locality}}, {{/if}} {{$profile.region}} - {{$profile.postal-code}} + {{$profile.postal_code}} - {{if $profile.country-name}}{{$profile.country-name}}{{/if}} + {{if $profile.country_name}}{{$profile.country_name}}{{/if}} {{/if}}