From af6a6e34035885301f680bdec5d23bee6fb345d0 Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Wed, 31 Oct 2012 22:28:36 +0100 Subject: [PATCH] Clean up: Fix trailing comments from I7e22cc3c Change-Id: I1d462e44460d9150c19f158ad8323b6d43f399cc --- includes/site/SiteObject.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/includes/site/SiteObject.php b/includes/site/SiteObject.php index adb2217e3e..0c6aeb39b8 100644 --- a/includes/site/SiteObject.php +++ b/includes/site/SiteObject.php @@ -162,12 +162,15 @@ class SiteObject extends ORMRow implements Site { $protocol = parse_url( $path, PHP_URL_SCHEME ); - if ( $protocol === false ) { // malformed URL + // Malformed URL + if ( $protocol === false ) { throw new MWException( "failed to parse URL $path" ); } - if ( $protocol === null ) { // no schema - $protocol = ''; // used for protocol relative URLs + // No schema + if ( $protocol === null ) { + // Used for protocol relative URLs + $protocol = ''; } return $protocol; -- 2.20.1