diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2013-12-08 09:55:49 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2013-12-08 09:55:49 +0100 |
commit | 4ac9fa081a7c045f6a9f1cfc529d82423f485b2e (patch) | |
tree | af68743f2f4a47d13f2b0eb05f5c4aaf86d8ea37 /includes/api/ApiFormatBase.php | |
parent | af4da56f1ad4d3ef7b06557bae365da2ea27a897 (diff) |
Update to MediaWiki 1.22.0
Diffstat (limited to 'includes/api/ApiFormatBase.php')
-rw-r--r-- | includes/api/ApiFormatBase.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/includes/api/ApiFormatBase.php b/includes/api/ApiFormatBase.php index d8aa1634..b89fb3a7 100644 --- a/includes/api/ApiFormatBase.php +++ b/includes/api/ApiFormatBase.php @@ -85,7 +85,7 @@ abstract class ApiFormatBase extends ApiBase { * * @param bool $b Whether or not ampersands should be escaped. */ - public function setUnescapeAmps ( $b ) { + public function setUnescapeAmps( $b ) { $this->mUnescapeAmps = $b; } @@ -170,12 +170,12 @@ abstract class ApiFormatBase extends ApiBase { ?> <br /> <small> -You are looking at the HTML representation of the <?php echo( $this->mFormat ); ?> format.<br /> +You are looking at the HTML representation of the <?php echo $this->mFormat; ?> format.<br /> HTML is good for debugging, but is unsuitable for application use.<br /> Specify the format parameter to change the output format.<br /> -To see the non HTML representation of the <?php echo( $this->mFormat ); ?> format, set format=<?php echo( strtolower( $this->mFormat ) ); ?>.<br /> +To see the non HTML representation of the <?php echo $this->mFormat; ?> format, set format=<?php echo strtolower( $this->mFormat ); ?>.<br /> See the <a href='https://www.mediawiki.org/wiki/API'>complete documentation</a>, or -<a href='<?php echo( $script ); ?>'>API help</a> for more information. +<a href='<?php echo $script; ?>'>API help</a> for more information. </small> <pre style='white-space: pre-wrap;'> <?php |