Topic: smilies in topics' titles ;)
Hi,
I would like to know if it is possible to have smilies in topics' titles? If not, will it be possible with 1.2 ?
It doesn't work on my website
Ludo
You are not logged in. Please login or register.
PunBB Forums → PunBB 1.2 troubleshooting → smilies in topics' titles ;)
Hi,
I would like to know if it is possible to have smilies in topics' titles? If not, will it be possible with 1.2 ?
It doesn't work on my website
Ludo
that could get very annoying
It's not possible and it most likely never will be :)
that could get very annoying
why ?
What about in the announcement message?
it would wreck the height of each line and just be .... ugh
You can add it to the announcement message by including HTML (e.g. <img src="...">).
cant you use the do_smilies() function on the topic title and announcement texts before you output it on the site? and include parser.php as well...
something like (in header.php line 196)
<table class="punmain" cellspacing="1" cellpadding="4">
<tr class="punhead">
<td class="punhead"><?php echo $lang_common['Announcement'] ?></td>
</tr>
<tr>
<td class="puncon2">
<?php
include($pun_root.'include/parser.php');
echo do_smilies($pun_config['o_announcement_message'])
?><br><br>
</td>
</tr>
</table>
and in viewforum.php: (line 155)
if ($pun_config['o_censoring'] == '1')
$cur_topic['subject'] = censor_words($cur_topic['subject']);
include($pun_root.'include/parser.php');
$cur_topic['subject'] = do_smilies($cur_topic['subject']);
i have not tested this myself since these are functions i would not like to have, but do they work? im not familiar enough with this forum to know if you have disabled this in some way rickard
PunBB Forums → PunBB 1.2 troubleshooting → smilies in topics' titles ;)
Powered by PunBB, supported by Informer Technologies, Inc.