diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-02-23 20:34:36 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-02-23 20:34:36 +0000 |
commit | 30f4a933a04ffa82b43021df7857aa288b0abf29 (patch) | |
tree | 095b3f4d895a5224655972fc5f4be8bf2320215e /phpBB/includes/functions_posting.php | |
parent | b2779edb663855a1ef901e4f9ec722d1f90486ca (diff) | |
download | forums-30f4a933a04ffa82b43021df7857aa288b0abf29.tar forums-30f4a933a04ffa82b43021df7857aa288b0abf29.tar.gz forums-30f4a933a04ffa82b43021df7857aa288b0abf29.tar.bz2 forums-30f4a933a04ffa82b43021df7857aa288b0abf29.tar.xz forums-30f4a933a04ffa82b43021df7857aa288b0abf29.zip |
Doubled alt on smiley html
git-svn-id: file:///svn/phpbb/trunk@3517 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-rw-r--r-- | phpBB/includes/functions_posting.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index 325c796b77..32b776fbcf 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -162,7 +162,7 @@ class parse_message do { $match[] = "#(?<=.\W|\W.|^\W)" . preg_quote($row['code'], '#') . "(?=.\W|\W.|\W$)#"; - $replace[] = '<!-- s' . $row['code'] . ' --><img src="{SMILE_PATH}/' . $row['smile_url'] . '" alt="' . $row['smile_url'] . '" border="0" alt="' . $row['emoticon'] . '" title="' . $row['emoticon'] . '" /><!-- s' . $row['code'] . ' -->'; + $replace[] = '<!-- s' . $row['code'] . ' --><img src="{SMILE_PATH}/' . $row['smile_url'] . '" border="0" alt="' . $row['emoticon'] . '" title="' . $row['emoticon'] . '" /><!-- s' . $row['code'] . ' -->'; } while ($row = $db->sql_fetchrow($result)); |