From 1fb59f92470c4b76abb655ea3365ef723af96a0f Mon Sep 17 00:00:00 2001 From: Damian Mooyman Date: Wed, 13 Aug 2014 09:17:02 +1200 Subject: [PATCH] Fix incorrect function visibility --- code/tasks/CurlLinkChecker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/tasks/CurlLinkChecker.php b/code/tasks/CurlLinkChecker.php index 4e307ff..a84439d 100644 --- a/code/tasks/CurlLinkChecker.php +++ b/code/tasks/CurlLinkChecker.php @@ -24,7 +24,7 @@ class CurlLinkChecker implements LinkChecker { * @param string $href URL to check * @return int HTTP status code, or null if not checkable (not a link) */ - protected function checkLink($href) { + public function checkLink($href) { // Skip non-external links if(!preg_match('/^https?[^:]*:\/\//', $href)) return null;