diff options
author | Starla Insigna <hatkirby@fourisland.com> | 2008-12-21 19:51:37 -0500 |
---|---|---|
committer | Starla Insigna <hatkirby@fourisland.com> | 2008-12-21 19:51:37 -0500 |
commit | 25ec7ee14626877b0e55f61b39fd7c41049de190 (patch) | |
tree | 3a98f606c2e1f642fa0b291b96f7361cad0e13b6 /pages | |
parent | 1c7e44811dde19488a870df68ff770a2f6def7f8 (diff) | |
download | fourisland-25ec7ee14626877b0e55f61b39fd7c41049de190.tar.gz fourisland-25ec7ee14626877b0e55f61b39fd7c41049de190.tar.bz2 fourisland-25ec7ee14626877b0e55f61b39fd7c41049de190.zip |
Fixed many HTML validation errors
Diffstat (limited to 'pages')
-rwxr-xr-x | pages/quotes.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/quotes.php b/pages/quotes.php index d957722..6db3cb0 100755 --- a/pages/quotes.php +++ b/pages/quotes.php | |||
@@ -158,7 +158,7 @@ function quote_generation($query, $origin, $page = 1, $quote_limit = 50, $page_l | |||
158 | { | 158 | { |
159 | $template->adds_block('QUOTES',array( 'NUMBER' => $getquotes3[$i]['id'], | 159 | $template->adds_block('QUOTES',array( 'NUMBER' => $getquotes3[$i]['id'], |
160 | 'RATING' => $getquotes3[$i]['rating'], | 160 | 'RATING' => $getquotes3[$i]['rating'], |
161 | 'QUOTE' => parseSmilies(nl2br(stripslashes($getquotes3[$i]['quote']))))); | 161 | 'QUOTE' => parseSmilies(str_replace("\n","<BR>",stripslashes($getquotes3[$i]['quote']))))); |
162 | 162 | ||
163 | $i++; | 163 | $i++; |
164 | } | 164 | } |