diff options
author | Sam Reed <reedy@users.mediawiki.org> | 2012-02-09 19:30:01 +0000 |
---|---|---|
committer | Sam Reed <reedy@users.mediawiki.org> | 2012-02-09 19:30:01 +0000 |
commit | 7b25f8231f7c6fc2f069a68b3b579860563e8319 (patch) | |
tree | 066e66fc0d8aa8052acd7880eaccc020cf68f24d /includes/ImageGallery.php | |
parent | 0a626db6e1e3d412b2bf96e7c1eca587b55bf678 (diff) | |
download | mediawikicore-7b25f8231f7c6fc2f069a68b3b579860563e8319.tar.gz mediawikicore-7b25f8231f7c6fc2f069a68b3b579860563e8319.zip |
Fixing some of the "@return true" or "@return false", need to be "@return bool" and then the metadata can say true if foo, false if bar
Other documentation improvements
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/111073
Diffstat (limited to 'includes/ImageGallery.php')
-rw-r--r-- | includes/ImageGallery.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/ImageGallery.php b/includes/ImageGallery.php index 1106124acf7b..a3c6e0de0877 100644 --- a/includes/ImageGallery.php +++ b/includes/ImageGallery.php @@ -75,7 +75,7 @@ class ImageGallery { /** * Set the caption (as plain text) * - * @param $caption Caption + * @param $caption string Caption */ function setCaption( $caption ) { $this->mCaption = htmlspecialchars( $caption ); |