summary refs log tree commit diff stats
path: root/includes
diff options
context:
space:
mode:
authorStarla Insigna <hatkirby@fourisland.com>2008-12-18 16:14:16 -0500
committerStarla Insigna <hatkirby@fourisland.com>2008-12-18 16:14:16 -0500
commit11565550e7ab6ef9987a298a0729fc016960252b (patch)
treed3655650b95447dc9b311c40a6b4f51eb87d3bbf /includes
parent2a1abd48671266bb2ce30eec5f2eecc0aaa8e2e4 (diff)
downloadfourisland-11565550e7ab6ef9987a298a0729fc016960252b.tar.gz
fourisland-11565550e7ab6ef9987a298a0729fc016960252b.tar.bz2
fourisland-11565550e7ab6ef9987a298a0729fc016960252b.zip
Added Smiley-parsing to Quotes DB
Diffstat (limited to 'includes')
-rwxr-xr-xincludes/functions_quotes.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/functions_quotes.php b/includes/functions_quotes.php index 2b05cab..7469152 100755 --- a/includes/functions_quotes.php +++ b/includes/functions_quotes.php
@@ -41,7 +41,7 @@ function quote_generation($query, $origin, $page = 1, $quote_limit = 50, $page_l
41 { 41 {
42 $template->adds_block('QUOTES',array( 'NUMBER' => $getquotes3[$i]['id'], 42 $template->adds_block('QUOTES',array( 'NUMBER' => $getquotes3[$i]['id'],
43 'RATING' => $getquotes3[$i]['rating'], 43 'RATING' => $getquotes3[$i]['rating'],
44 'QUOTE' => nl2br(stripslashes($getquotes3[$i]['quote'])))); 44 'QUOTE' => parseSmilies(nl2br(stripslashes($getquotes3[$i]['quote'])))));
45 45
46 $i++; 46 $i++;
47 } 47 }