diff options
author | DannyS712 <DannyS712.enwiki@gmail.com> | 2021-03-10 15:03:47 +0000 |
---|---|---|
committer | DannyS712 <DannyS712.enwiki@gmail.com> | 2021-03-10 15:05:57 +0000 |
commit | 35bd84e9ee9d39454e8c70cd23f0aa85ea5901ef (patch) | |
tree | 38b0adc0a241121549c86a1f0f457b1ca98c5d7c /includes/OutputHandler.php | |
parent | aa2ee91588ddf4075e36f3fe2e92b9d20588d05a (diff) | |
download | mediawikicore-35bd84e9ee9d39454e8c70cd23f0aa85ea5901ef.tar.gz mediawikicore-35bd84e9ee9d39454e8c70cd23f0aa85ea5901ef.zip |
Comments: use only // instead of more
No need for three or more slashes
Except in some places where a bunch more are
used for drawing attention to something
Change-Id: Ic90358eb89a14a04d2b66c48e52e8fb20de0eb04
Diffstat (limited to 'includes/OutputHandler.php')
-rw-r--r-- | includes/OutputHandler.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/OutputHandler.php b/includes/OutputHandler.php index 315eea50b91b..2e0455665a75 100644 --- a/includes/OutputHandler.php +++ b/includes/OutputHandler.php @@ -59,7 +59,7 @@ class OutputHandler { * @return string */ private static function findUriExtension() { - /// @todo FIXME: this sort of dupes some code in WebRequest::getRequestUrl() + // @todo FIXME: this sort of dupes some code in WebRequest::getRequestUrl() if ( isset( $_SERVER['REQUEST_URI'] ) ) { // Strip the query string... $path = explode( '?', $_SERVER['REQUEST_URI'], 2 )[0]; |