From: Raimond Spekking Date: Mon, 6 Aug 2007 09:34:55 +0000 (+0000) Subject: typo, use variable '$name', not a constant 'name'. X-Git-Tag: 1.31.0-rc.0~51859 X-Git-Url: http://git.cyclocoop.org/%22%2C%20generer_url_ecrire%28?a=commitdiff_plain;h=5216f912c720390946d0de78c17cd97750e75060;p=lhc%2Fweb%2Fwiklou.git typo, use variable '$name', not a constant 'name'. --- diff --git a/includes/Title.php b/includes/Title.php index 2d4828c63f..70628c8764 100644 --- a/includes/Title.php +++ b/includes/Title.php @@ -1082,7 +1082,7 @@ class Title { $intended = $user->mBlock->mAddress; - $errors[] = array ( ($block->mAuto ? 'autoblockedtext-concise' : 'blockedtext-concise'), $link, $reason, $ip, name, $blockid, $blockExpiry, $intended ); + $errors[] = array ( ($block->mAuto ? 'autoblockedtext-concise' : 'blockedtext-concise'), $link, $reason, $ip, $name, $blockid, $blockExpiry, $intended ); } return $errors;