I solved the problem with the following change to the get($url) function in libs/link.php:
Code:
function get($url) {
$url=trim($url);
if( !preg_match( '/^(http|https|ftp):\/\/[a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,5}'
.'((:[0-9]{1,5})?\/.*)?$/i' ,$url))
{
$this->valid = false; return;
}
Code:
if(!($this->html = $xxx)) { return; }
Code:
if(!($this->html === $xxx))




Linear Mode

