From 032dc6cebadb1bc3e1647dff131a1e99c53019ff Mon Sep 17 00:00:00 2001 From: Antonio Ospite Date: Wed, 1 Jul 2015 13:35:56 +0200 Subject: [PATCH] tweeper.php: strip the leading "www." from hosts This makes tweeper more forgiving when it is passed URLs either with or without the "www" subdomain for the same host. --- tweeper.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tweeper.php b/tweeper.php index 178176d..2444a39 100644 --- a/tweeper.php +++ b/tweeper.php @@ -244,7 +244,10 @@ class Tweeper { return NULL; } - $xsltProcessor = $this->load_stylesheet($url["host"]); + // Strip the leading www. to be more forgiving on input URLs + $host = preg_replace('/^www\./', '', $url["host"]); + + $xsltProcessor = $this->load_stylesheet($host); if (NULL === $xsltProcessor) { return NULL; } @@ -254,7 +257,7 @@ class Tweeper { return NULL; } - $xmlDoc = $this->html_to_xml($html, $url["host"]); + $xmlDoc = $this->html_to_xml($html, $host); if (NULL === $xmlDoc) { return NULL; } -- 2.1.4