Quote:
Originally Posted by agsguar
I preffer only show the general folder. or could be show in random mode with all folders?? jeje
Thank you!
|
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.