Quote:
Originally Posted by Dream
Change this code
while( $smilie = $db->fetch_array( $result ) ) {
echo '<td class="alt1" align="center">' . chatbox_make_smilie_link($smilie) . "</td>\n";
$i++;
if ($i >= $smiliecolumns) {
echo "</tr><tr>\n";
$i = 0;
}
}
for
while( $smilie = $db->fetch_array( $result ) ) {
if ($smilie[smiliepath] == '/images/smilies/general') {
echo '<td class="alt1" align="center">' . chatbox_make_smilie_link($smilie) . "</td>\n";
$i++;
if ($i >= $smiliecolumns) {
echo "</tr><tr>\n";
$i = 0;
}
}
}
If that doesnt work, try using '/images/smilies/general/' or 'images/smilies/general' or 'images/smilies/general/'
Also don't forget to redo the code change I told you about before.
|
Hi Dream.
I do this but not work
I try with:
'/images/smilies/general/'
'/images/smilies/general'
'images/smilies/general'
'images/smilies/general/'
but not appear any smilie.. do you have another idea??
Thank you in advance..
note: i made this changes in a fresh copy of 1.9 version.