diff options
author | Friendika <info@friendika.com> | 2011-09-19 20:24:32 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-09-19 20:24:32 -0700 |
commit | 660787916ef33e8efc6d03ad1f74e1c74eb7feaf (patch) | |
tree | d2af1a8a37f64e389a067621484f6ad6b0a5a3cb /boot.php | |
parent | c2ccb78869b8dfbbbaa124c81d717e1edff56304 (diff) | |
download | volse-hubzilla-660787916ef33e8efc6d03ad1f74e1c74eb7feaf.tar.gz volse-hubzilla-660787916ef33e8efc6d03ad1f74e1c74eb7feaf.tar.bz2 volse-hubzilla-660787916ef33e8efc6d03ad1f74e1c74eb7feaf.zip |
template escapes
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 )); |