Topic: Live Bookmarks in Firefox
The live bookmarks feature in Firefox is very usefull ! Just a click and we can read all the news !
PunBB have a RSS backend, only one line is missing in the header to use this feature:
<link rel="alternate" type="application/rss+xml" title="<?php echo $pun_config['o_board_title'] ?>" href="extern.php?action=new&type=rss" />
Can you add it ? :-)
To patch manually:
#
#---------[ 1. OPEN ]---------------------------------------------------------
#
header.php
#
#---------[ 2. FIND (line: 64) ]---------------------------------------------
#
<title><?php echo $page_title ?></title>
#
#---------[ 3. AFTER, ADD ]-------------------------------------------------
#
<link rel="alternate" type="application/rss+xml" title="<?php echo $pun_config['o_board_title'] ?>" href="extern.php?action=new&type=rss" />
#
#---------[ 4. SAVE/UPLOAD ]-------------------------------------------------
#