aboutsummaryrefslogtreecommitdiffstats
path: root/includes/Revision.php
diff options
context:
space:
mode:
authorumherirrender <umherirrender_de.wp@web.de>2014-04-30 20:53:31 +0200
committerUmherirrender <umherirrender_de.wp@web.de>2014-05-01 18:46:34 +0000
commite10ee4304e6c08c98d86fed92f47f4bab5fafdb2 (patch)
tree8aaead7950fbfb3dfa82c104de3b94985cfefa17 /includes/Revision.php
parent37c029729637ee165bada6bba063424d998a335a (diff)
downloadmediawikicore-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.php24
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__ );