From 38aa0dc6133ff53d20fd9f714eb380809c8dba67 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Tue, 6 May 2014 21:17:19 +0200 Subject: fix gist.github.com clone urls --- src/phorkie/HtmlParser.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/phorkie/HtmlParser.php') diff --git a/src/phorkie/HtmlParser.php b/src/phorkie/HtmlParser.php index d613452..b8cd1af 100644 --- a/src/phorkie/HtmlParser.php +++ b/src/phorkie/HtmlParser.php @@ -44,7 +44,8 @@ class HtmlParser if ($scheme == 'https' && isset($arUrl['host']) && $arUrl['host'] == 'gist.github.com' ) { - //https://gist.github.com/maddy2101/5764473 + //https://gist.github.com/cweiske/2400389 + // clone URL: https://gist.github.com/2400389.git $parts = explode('/', ltrim($arUrl['path'], '/')); if (count($parts == 2)) { //we only want the number, not the user name @@ -54,10 +55,10 @@ class HtmlParser } $title = $this->getHtmlTitle($url); if ($title === null) { - $this->arGitUrls[][] = 'git://gist.github.com/' + $this->arGitUrls[][] = 'https://gist.github.com/' . $path . '.git'; } else { - $this->arGitUrls[$title][] = 'git://gist.github.com/' + $this->arGitUrls[$title][] = 'https://gist.github.com/' . $path . '.git'; } return true; -- cgit v1.2.3