From 082a5fa6e18a4639a84c4557e022a054bc3e77c2 Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Thu, 1 Sep 2011 08:21:50 +0000 Subject: [PATCH] Fix indentation in r95396 --- includes/Title.php | 29 +++++++++-------------------- 1 file changed, 9 insertions(+), 20 deletions(-) diff --git a/includes/Title.php b/includes/Title.php index fb0e6d35de..932e56cbcb 100644 --- a/includes/Title.php +++ b/includes/Title.php @@ -47,6 +47,7 @@ class Title { */ const GAID_FOR_UPDATE = 1; + /** * @name Private member variables * Please use the accessor functions instead. @@ -758,7 +759,7 @@ class Title { /** * Return the prefixed title with spaces _without_ the interwiki prefix - * + * * @return \type{\string} the title, prefixed by the namespace but not by the interwiki prefix, with spaces */ public function getSemiPrefixedText() { @@ -767,7 +768,7 @@ class Title { $s = str_replace( '_', ' ', $s ); $this->mSemiPrefixedText = $s; } - return $this->mSemiPrefixedText; + return $this->mSemiPrefixedText; } /** @@ -998,7 +999,7 @@ class Title { public function escapeFullURL( $query = '' ) { return htmlspecialchars( $this->getFullURL( $query ) ); } - + /** * HTML-escaped version of getCanonicalURL() */ @@ -1010,7 +1011,7 @@ class Title { * Get the URL form for an internal link. * - Used in various Squid-related code, in case we have a different * internal hostname for the server from the exposed one. - * + * * This uses $wgInternalServer to qualify the path, or $wgServer * if $wgInternalServer is not set. If the server variable used is * protocol-relative, the URL will be expanded to http:// @@ -1035,9 +1036,9 @@ class Title { * Get the URL for a canonical link, for use in things like IRC and * e-mail notifications. Uses $wgCanonicalServer and the * GetCanonicalURL hook. - * + * * NOTE: Unlike getInternalURL(), the canonical URL includes the fragment - * + * * @param $query string An optional query string * @param $variant string Language variant of URL (for sr, zh, ...) * @return string The URL @@ -3379,14 +3380,14 @@ class Title { array( 'rc_timestamp' => $rcts, 'rc_namespace' => $newns, 'rc_title' => $newdbk, 'rc_new' => 1 ), __METHOD__ ); - + if ( $wgEnableInterwikiTemplatesTracking && $wgGlobalDatabase ) { $dbw2 = wfGetDB( DB_MASTER, array(), $wgGlobalDatabase ); $dbw2->delete( 'globaltemplatelinks', array( 'gtl_from_wiki' => wfGetID(), 'gtl_from_page' => $newid ), __METHOD__ ); - } + } } # Save a null revision in the page's history notifying of the move @@ -3859,18 +3860,6 @@ class Title { && $this->getDBkey() === $title->getDBkey(); } - /** - * Check if this title is a subpage of another title - * - * @param $title Title - * @return Bool - */ - public function isSubpageOf( Title $title ) { - return $this->getInterwiki() === $title->getInterwiki() - && $this->getNamespace() == $title->getNamespace() - && strpos( $this->getDBkey(), $title->getDBkey() . '/' ) === 0; - } - /** * Callback for usort() to do title sorts by (namespace, title) * -- 2.20.1