http://www.mediawiki.org/wiki/Special:Code/MediaWiki/95947
Revision: 95947
Author: catrope
Date: 2011-09-01 08:21:50 +0000 (Thu, 01 Sep 2011)
Log Message:
-----------
Fix indentation in r95396
Modified Paths:
--------------
trunk/phase3/includes/Title.php
Modified: trunk/phase3/includes/Title.php
===================================================================
--- trunk/phase3/includes/Title.php 2011-09-01 07:49:37 UTC (rev 95946)
+++ trunk/phase3/includes/Title.php 2011-09-01 08:21:50 UTC (rev 95947)
@@ -47,6 +47,7 @@
*/
const GAID_FOR_UPDATE = 1;
+
/**
* @name Private member variables
* Please use the accessor functions instead.
@@ -758,7 +759,7 @@
/**
* 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 @@
$s = str_replace( '_', ' ', $s );
$this->mSemiPrefixedText = $s;
}
- return $this->mSemiPrefixedText;
+ return $this->mSemiPrefixedText;
}
/**
@@ -998,7 +999,7 @@
public function escapeFullURL( $query = '' ) {
return htmlspecialchars( $this->getFullURL( $query ) );
}
-
+
/**
* HTML-escaped version of getCanonicalURL()
*/
@@ -1010,7 +1011,7 @@
* 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 @@
* 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,15 +3380,15 @@
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
$nullRevision = Revision::newNullRevision( $dbw, $oldid,
$comment, true );
@@ -3860,18 +3861,6 @@
}
/**
- * 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)
*
* @param $a Title
_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs