From 56bf0267e1e3218e22992a25927a10e754bf71f3 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Fri, 28 Sep 2012 10:36:59 +0200 Subject: [PATCH] trim remote fork url spaces away --- src/phorkie/ForkRemote.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/phorkie/ForkRemote.php b/src/phorkie/ForkRemote.php index d2b077b..3f6a478 100644 --- a/src/phorkie/ForkRemote.php +++ b/src/phorkie/ForkRemote.php @@ -17,7 +17,7 @@ class ForkRemote public function __construct($url) { - $this->url = $url; + $this->url = trim($url); } public function parse() -- 2.30.2