Oops, I just realised I made a wee error in the links.php script above.
Replace this part:
Code:
// Reorder the array keys
foreach($lines as $l) {
$lines[] = $l;
}
with this:
Code:
// Reorder the array keys
$lines_temp = $lines;
$lines = array();
foreach($lines_temp as $l) {
$lines[] = $l;
}