diff options
author | umherirrender <umherirrender_de.wp@web.de> | 2014-04-30 20:53:31 +0200 |
---|---|---|
committer | Umherirrender <umherirrender_de.wp@web.de> | 2014-05-01 18:46:34 +0000 |
commit | e10ee4304e6c08c98d86fed92f47f4bab5fafdb2 (patch) | |
tree | 8aaead7950fbfb3dfa82c104de3b94985cfefa17 /includes/Revision.php | |
parent | 37c029729637ee165bada6bba063424d998a335a (diff) | |
download | mediawikicore-e10ee4304e6c08c98d86fed92f47f4bab5fafdb2.tar.gz mediawikicore-e10ee4304e6c08c98d86fed92f47f4bab5fafdb2.zip |
Adjust indent of some comment blocks
Change-Id: Ic25419490fa6a35c11ccc2b7810527e6661e027c
Diffstat (limited to 'includes/Revision.php')
-rw-r--r-- | includes/Revision.php | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/includes/Revision.php b/includes/Revision.php index afbd3ace7358..5a83d38037c1 100644 --- a/includes/Revision.php +++ b/includes/Revision.php @@ -1201,18 +1201,18 @@ class Revision implements IDBAccessObject { } /** - * Get revision text associated with an old or archive row - * $row is usually an object from wfFetchRow(), both the flags and the text - * field must be included. - * - * @param stdClass $row The text data - * @param string $prefix Table prefix (default 'old_') - * @param string|bool $wiki The name of the wiki to load the revision text from - * (same as the the wiki $row was loaded from) or false to indicate the local - * wiki (this is the default). Otherwise, it must be a symbolic wiki database - * identifier as understood by the LoadBalancer class. - * @return string Text the text requested or false on failure - */ + * Get revision text associated with an old or archive row + * $row is usually an object from wfFetchRow(), both the flags and the text + * field must be included. + * + * @param stdClass $row The text data + * @param string $prefix Table prefix (default 'old_') + * @param string|bool $wiki The name of the wiki to load the revision text from + * (same as the the wiki $row was loaded from) or false to indicate the local + * wiki (this is the default). Otherwise, it must be a symbolic wiki database + * identifier as understood by the LoadBalancer class. + * @return string Text the text requested or false on failure + */ public static function getRevisionText( $row, $prefix = 'old_', $wiki = false ) { wfProfileIn( __METHOD__ ); |