From: addshore Date: Mon, 14 Apr 2014 12:43:46 +0000 (+0100) Subject: Fix CS double space in TitleValue return X-Git-Tag: 1.31.0-rc.0~16229 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=8644ed29c5b6d677beaec8e4536007fbd4570c39;p=lhc%2Fweb%2Fwiklou.git Fix CS double space in TitleValue return Change-Id: Ib7eb2b070eea9f8b2df860b6d16f9c769be78cf7 --- diff --git a/includes/title/TitleValue.php b/includes/title/TitleValue.php index 06e9058aa6..7a865eb552 100644 --- a/includes/title/TitleValue.php +++ b/includes/title/TitleValue.php @@ -157,6 +157,6 @@ class TitleValue { $name .= '#' . $this->fragment; } - return $name; + return $name; } }