From: Antonio Ospite Date: Tue, 17 May 2016 14:09:14 +0000 (+0200) Subject: tweeper.php: write the word "URL" in upper case X-Git-Tag: v0.6~42 X-Git-Url: https://git.ao2.it/tweeper.git/commitdiff_plain/3f3df99b377eca4f2ed8870ff3f4559abd0bec80?hp=346aa866098b16fb986ba65aa5fa298acad3e7b8 tweeper.php: write the word "URL" in upper case --- diff --git a/tweeper.php b/tweeper.php index 5379be7..bfc07f2 100644 --- a/tweeper.php +++ b/tweeper.php @@ -129,7 +129,7 @@ class Tweeper { "video/ogg", ); - // The RSS specification says that the enclosure element url must be http. + // The RSS specification says that the enclosure element URL must be http. // See http://sourceforge.net/p/feedvalidator/bugs/72/ $http_url = preg_replace("/^https/", "http", $url); @@ -298,7 +298,7 @@ class Tweeper { public function tweep($src_url) { $url = parse_url($src_url); if (FALSE === $url || empty($url["host"])) { - trigger_error("Invalid url: $src_url", E_USER_ERROR); + trigger_error("Invalid URL: $src_url", E_USER_ERROR); return NULL; }