Re: PunOnline (online list) for 1.0.1...
Aha, a bug! :)
Edit: To fix do this. Open up include/parser.php and locate
else if (strpos($url, 'http://') !== 0)
$full_url = 'http://'.$full_url;
and replace it with
else if (!preg_match('#^([a-z]{3,5})://#', $url))
$full_url = 'http://'.$full_url;
"Programming is like sex: one mistake and you have to support it for the rest of your life."