diff options
author | the_systech <the_systech@users.sourceforge.net> | 2001-08-14 17:49:12 +0000 |
---|---|---|
committer | the_systech <the_systech@users.sourceforge.net> | 2001-08-14 17:49:12 +0000 |
commit | 7503c85590ccfa01634d2b071eb8e6ab1475db73 (patch) | |
tree | 1b44dcca4740b9cc8430e33928c745eeb09453a2 /phpBB/includes/functions.php | |
parent | 56ca4e53d7a770ad8db8f8ec4a0fade2542d7657 (diff) | |
download | forums-7503c85590ccfa01634d2b071eb8e6ab1475db73.tar forums-7503c85590ccfa01634d2b071eb8e6ab1475db73.tar.gz forums-7503c85590ccfa01634d2b071eb8e6ab1475db73.tar.bz2 forums-7503c85590ccfa01634d2b071eb8e6ab1475db73.tar.xz forums-7503c85590ccfa01634d2b071eb8e6ab1475db73.zip |
Ok last bit with the smilies :)
git-svn-id: file:///svn/phpbb/trunk@875 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index a12b10c401..e09b01c763 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -788,7 +788,7 @@ function smilies_pass($message) for($i = 0; $i < count($smilies); $i++) { $orig[] = "'\B" . preg_quote($smilies[$i]['code']) . "\B'sxi"; - $repl[] = '\1<img src="'. $board_config['smilies_path'] . '/' . $smilies[$i]['smile_url'] . '" alt="' . $smilies[$i]['smile_url'] . '">\2'; + $repl[] = '<img src="'. $board_config['smilies_path'] . '/' . $smilies[$i]['smile_url'] . '" alt="' . $smilies[$i]['smile_url'] . '">'; } if($i > 0) |