Quote:
Originally Posted by LightBringer
The only problem with this is the # symbol is added in twice.
If you change the handle field in the admincp from say #channelname to just channelname, then the script stops working.
If a user clicks on that link floris, it will take them to ##channelname instead of #channelname.
Any advice aside from hardcoding the channel name in there?
|
Easier way to do it is to:
Edit the irc_loggedin template and replace the $channel[handle]
with
PHP Code:
<a href="irc://irc.server/channelname">$channel[handle]</a>
That worked for me ..