View Single Post
Old 2009-03-02, 06:13 PM   #2
asianslave
Aw, Dad, you've done a lot of great things, but you're a very old man, and old people are useless
 
Join Date: Sep 2008
Posts: 28
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;
}
asianslave is offline   Reply With Quote