aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-09-19 20:24:32 -0700
committerFriendika <info@friendika.com>2011-09-19 20:24:32 -0700
commit660787916ef33e8efc6d03ad1f74e1c74eb7feaf (patch)
treed2af1a8a37f64e389a067621484f6ad6b0a5a3cb /boot.php
parentc2ccb78869b8dfbbbaa124c81d717e1edff56304 (diff)
downloadvolse-hubzilla-660787916ef33e8efc6d03ad1f74e1c74eb7feaf.tar.gz
volse-hubzilla-660787916ef33e8efc6d03ad1f74e1c74eb7feaf.tar.bz2
volse-hubzilla-660787916ef33e8efc6d03ad1f74e1c74eb7feaf.zip
template escapes
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/boot.php b/boot.php
index f7c9d39d2..ea2d9df9d 100644
--- a/boot.php
+++ b/boot.php
@@ -954,16 +954,16 @@ EOT;
$tpl = get_markup_template('profile_vcard.tpl');
$o .= replace_macros($tpl, array(
- '$fullname' => $fullname,
- '$pdesc' => $pdesc,
+ '$fullname' => template_escape($fullname),
+ '$pdesc' => template_escape($pdesc),
'$tabs' => $tabs,
'$photo' => $photo,
'$connect' => $connect,
- '$location' => $location,
+ '$location' => template_escape($location),
'$gender' => $gender,
'$pubkey' => $pubkey,
- '$marital' => $marital,
- '$homepage' => $homepage,
+ '$marital' => template_escape($marital),
+ '$homepage' => template_escape($homepage),
'$diaspora' => $diaspora_vcard
));