Snoopy library Bug
if there is any https link in a http page then when getting the links with fetchlink functioin snoopy.class.php return result like
http://host.name/https://NewHTTPHOST
But it should not prefix the domain name.
the solution is to replace the line in _expandlinks function with
Replace: “|^(?!http://)(?!mailto:)|i”,
Replace With:”|^(?!http://)(?!https://)(?!mailto:)|i”,
But the problem does not exists.
Thank you.