Another feature I wanted was to have the topic being shown on my site automatically link URLs, since they are often used in IRC topics.
To do this, edit the
[Eggdrop IRC manager]Forumhome template alteration in the Plugin and Plugin Manager in the control panel.
Find the line:
Code:
$channel['dateline_max']);
Below it add:
Code:
$channel['topic'] = preg_replace('@(https?://([-\w\.]+)+(:\d+)?(/([\w/_\.]*(\?\S+)?)?)?)@', '<a href="$1" target="_blank">$1</a>', $channel['topic']);