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."

27

Re: PunOnline (online list) for 1.0.1...

Well..
I fainaly installed it, And it works like a charm!
Thanks everybody for your help. big_smile

28

Re: PunOnline (online list) for 1.0.1...

Great!