From 15d3be18a96606cdb099050e964a848fb0b252e6 Mon Sep 17 00:00:00 2001 From: Friendika Date: Thu, 3 Mar 2011 22:53:20 -0800 Subject: use prepare_body for text preparation --- view/en/profile_advanced.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'view/en') 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
About:
@@ -124,7 +124,7 @@ $o .= <<< EOT EOT; } -if($txt = bbcode($a->profile['interest'])) { +if($txt = prepare_body($a->profile['interest'])) { $o .= <<< EOT
Hobbies/Interests:
@@ -135,7 +135,7 @@ $o .= <<< EOT EOT; } -if($txt = bbcode($a->profile['contact'])) { +if($txt = prepare_body($a->profile['contact'])) { $o .= <<< EOT
Contact information and Social Networks:
@@ -146,7 +146,7 @@ $o .= <<< EOT EOT; } -if($txt = bbcode($a->profile['music'])) { +if($txt = prepare_body($a->profile['music'])) { $o .= <<< EOT
Musical interests:
@@ -157,7 +157,7 @@ $o .= <<< EOT EOT; } -if($txt = bbcode($a->profile['book'])) { +if($txt = prepare_body($a->profile['book'])) { $o .= <<< EOT
Books, literature:
@@ -168,7 +168,7 @@ $o .= <<< EOT EOT; } -if($txt = bbcode($a->profile['tv'])) { +if($txt = prepare_body($a->profile['tv'])) { $o .= <<< EOT
Television:
@@ -179,7 +179,7 @@ $o .= <<< EOT EOT; } -if($txt = bbcode($a->profile['film'])) { +if($txt = prepare_body($a->profile['film'])) { $o .= <<< EOT
Film/dance/culture/entertainment:
@@ -190,7 +190,7 @@ $o .= <<< EOT EOT; } -if($txt = bbcode($a->profile['romance'])) { +if($txt = prepare_body($a->profile['romance'])) { $o .= <<< EOT
Love/romance:
@@ -201,7 +201,7 @@ $o .= <<< EOT EOT; } -if($txt = bbcode($a->profile['work'])) { +if($txt = prepare_body($a->profile['work'])) { $o .= <<< EOT
Work/employment:
@@ -212,7 +212,7 @@ $o .= <<< EOT EOT; } -if($txt = bbcode($a->profile['education'])) { +if($txt = prepare_body($a->profile['education'])) { $o .= <<< EOT
School/education:
-- cgit v1.2.3