1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-28 20:40:24 +02:00

ALTER TABLE phpbb_smilies CHANGE smile_on_posting display_on_posting

git-svn-id: file:///svn/phpbb/trunk@3008 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Ludovic Arnaud
2002-11-05 06:38:09 +00:00
parent bc6e36ef4f
commit a583f7bd10
3 changed files with 6 additions and 6 deletions

View File

@@ -480,7 +480,7 @@ function generate_smilies($mode)
);
}
$where_sql = ( $mode == 'inline' ) ? 'WHERE smile_on_posting = 1 ' : '';
$where_sql = ( $mode == 'inline' ) ? 'WHERE display_on_posting = 1 ' : '';
$sql = "SELECT emoticon, code, smile_url, smile_width, smile_height
FROM " . SMILIES_TABLE . "
$where_sql