aboutsummaryrefslogtreecommitdiffstats
path: root/includes/libs
diff options
context:
space:
mode:
authorSam Reed <reedy@users.mediawiki.org>2012-02-09 17:41:50 +0000
committerSam Reed <reedy@users.mediawiki.org>2012-02-09 17:41:50 +0000
commitf3cc77aaeeb4f3a93fde7de80dbaafd89f6bd2bf (patch)
tree334257e53cddc371dab4ca057fed3571e670eb75 /includes/libs
parent20dba09fac9ad7715184eae8e2e3b2244258e6be (diff)
downloadmediawikicore-f3cc77aaeeb4f3a93fde7de80dbaafd89f6bd2bf.tar.gz
mediawikicore-f3cc77aaeeb4f3a93fde7de80dbaafd89f6bd2bf.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/111048
Diffstat (limited to 'includes/libs')
-rw-r--r--includes/libs/IEUrlExtension.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/libs/IEUrlExtension.php b/includes/libs/IEUrlExtension.php
index e00e66638512..dcdf7b355743 100644
--- a/includes/libs/IEUrlExtension.php
+++ b/includes/libs/IEUrlExtension.php
@@ -35,8 +35,8 @@ class IEUrlExtension {
*
* If the a variable is unset in $_SERVER, it should be unset in $vars.
*
- * @param $vars A subset of $_SERVER.
- * @param $extWhitelist Extensions which are allowed, assumed harmless.
+ * @param $vars array A subset of $_SERVER.
+ * @param $extWhitelist array Extensions which are allowed, assumed harmless.
* @return bool
*/
public static function areServerVarsBad( $vars, $extWhitelist = array() ) {