aboutsummaryrefslogtreecommitdiffstats
path: root/includes/OutputHandler.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/OutputHandler.php')
-rw-r--r--includes/OutputHandler.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/OutputHandler.php b/includes/OutputHandler.php
index 850f0727d97d..28108f658330 100644
--- a/includes/OutputHandler.php
+++ b/includes/OutputHandler.php
@@ -91,14 +91,14 @@ class OutputHandler {
* Get the "file extension" that some client apps will estimate from
* the currently-requested URL.
*
- * This isn't a MediaWiki\Request\WebRequest method, because we need it before the class loads.
+ * This isn't a WebRequest method, because we need it before the class loads.
* @todo As of 2018, this actually runs after autoloader in Setup.php, so
- * MediaWiki\Request\WebRequest seems like a good place for this.
+ * WebRequest seems like a good place for this.
*
* @return string
*/
private static function findUriExtension() {
- // @todo FIXME: this sort of dupes some code in MediaWiki\Request\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];