diff options
author | Friendika <info@friendika.com> | 2011-03-03 22:53:20 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-03-03 22:53:20 -0800 |
commit | 15d3be18a96606cdb099050e964a848fb0b252e6 (patch) | |
tree | 0904af28bbf89f1713b273831bf9c6eae4a64b52 /view/en | |
parent | 71d481069792a099a3cbc714d92b1cc528d60c6d (diff) | |
download | volse-hubzilla-15d3be18a96606cdb099050e964a848fb0b252e6.tar.gz volse-hubzilla-15d3be18a96606cdb099050e964a848fb0b252e6.tar.bz2 volse-hubzilla-15d3be18a96606cdb099050e964a848fb0b252e6.zip |
use prepare_body for text preparation
Diffstat (limited to 'view/en')
-rw-r--r-- | view/en/profile_advanced.php | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/view/en/profile_advanced.php b/view/en/profile_advanced.php index d2b9d0612..aec1b0108 100644 --- a/view/en/profile_advanced.php +++ b/view/en/profile_advanced.php @@ -113,7 +113,7 @@ $o .= <<< EOT EOT; } -if($txt = bbcode($a->profile['about'])) { +if($txt = prepare_body($a->profile['about'])) { $o .= <<< EOT <div id="advanced-profile-about-wrapper" > <div id="advanced-profile-about-text">About:</div> @@ -124,7 +124,7 @@ $o .= <<< EOT EOT; } -if($txt = bbcode($a->profile['interest'])) { +if($txt = prepare_body($a->profile['interest'])) { $o .= <<< EOT <div id="advanced-profile-interest-wrapper" > <div id="advanced-profile-interest-text">Hobbies/Interests:</div> @@ -135,7 +135,7 @@ $o .= <<< EOT EOT; } -if($txt = bbcode($a->profile['contact'])) { +if($txt = prepare_body($a->profile['contact'])) { $o .= <<< EOT <div id="advanced-profile-contact-wrapper" > <div id="advanced-profile-contact-text">Contact information and Social Networks:</div> @@ -146,7 +146,7 @@ $o .= <<< EOT EOT; } -if($txt = bbcode($a->profile['music'])) { +if($txt = prepare_body($a->profile['music'])) { $o .= <<< EOT <div id="advanced-profile-music-wrapper" > <div id="advanced-profile-music-text">Musical interests:</div> @@ -157,7 +157,7 @@ $o .= <<< EOT EOT; } -if($txt = bbcode($a->profile['book'])) { +if($txt = prepare_body($a->profile['book'])) { $o .= <<< EOT <div id="advanced-profile-book-wrapper" > <div id="advanced-profile-book-text">Books, literature:</div> @@ -168,7 +168,7 @@ $o .= <<< EOT EOT; } -if($txt = bbcode($a->profile['tv'])) { +if($txt = prepare_body($a->profile['tv'])) { $o .= <<< EOT <div id="advanced-profile-tv-wrapper" > <div id="advanced-profile-tv-text">Television:</div> @@ -179,7 +179,7 @@ $o .= <<< EOT EOT; } -if($txt = bbcode($a->profile['film'])) { +if($txt = prepare_body($a->profile['film'])) { $o .= <<< EOT <div id="advanced-profile-film-wrapper" > <div id="advanced-profile-film-text">Film/dance/culture/entertainment:</div> @@ -190,7 +190,7 @@ $o .= <<< EOT EOT; } -if($txt = bbcode($a->profile['romance'])) { +if($txt = prepare_body($a->profile['romance'])) { $o .= <<< EOT <div id="advanced-profile-romance-wrapper" > <div id="advanced-profile-romance-text">Love/romance:</div> @@ -201,7 +201,7 @@ $o .= <<< EOT EOT; } -if($txt = bbcode($a->profile['work'])) { +if($txt = prepare_body($a->profile['work'])) { $o .= <<< EOT <div id="advanced-profile-work-wrapper" > <div id="advanced-profile-work-text">Work/employment:</div> @@ -212,7 +212,7 @@ $o .= <<< EOT EOT; } -if($txt = bbcode($a->profile['education'])) { +if($txt = prepare_body($a->profile['education'])) { $o .= <<< EOT <div id="advanced-profile-education-wrapper" > <div id="advanced-profile-education-text">School/education:</div> |