X-Git-Url: https://git.ao2.it/tweeper.git/blobdiff_plain/d84e6866a556f74f4c7623fcb415ad251ba00bfc..da9250bb9572c83ed397d3bfda0e44fa13016efb:/src/Tweeper.php diff --git a/src/Tweeper.php b/src/Tweeper.php index d58b529..b75409b 100644 --- a/src/Tweeper.php +++ b/src/Tweeper.php @@ -370,7 +370,7 @@ class Tweeper { /** * Convert the site content to RSS. */ - public function tweep($src_url, $host=NULL, $validate_scheme=TRUE) { + public function tweep($src_url, $host = NULL, $validate_scheme = TRUE) { $url = parse_url($src_url); if (FALSE === $url) { trigger_error("Invalid URL: $src_url", E_USER_WARNING); @@ -385,7 +385,7 @@ class Tweeper { } } - // if the host is not given derive it from the URL + // If the host is not given derive it from the URL. if (NULL === $host) { if (empty($url["host"])) { trigger_error("Invalid host in URL: $src_url", E_USER_WARNING);