Index: trunk/extensions/GlobalBlocking/SpecialRemoveGlobalBlock.php |
— | — | @@ -114,7 +114,7 @@ |
115 | 115 | |
116 | 116 | $fields = array(); |
117 | 117 | |
118 | | - $fields['ipaddress'] = Xml::input( 'address', 45, $this->mUnblockIP ); |
| 118 | + $fields['globalblocking-ipaddress'] = Xml::input( 'address', 45, $this->mUnblockIP ); |
119 | 119 | $fields['globalblocking-unblock-reason'] = Xml::input( 'wpReason', 45, $this->mReason ); |
120 | 120 | |
121 | 121 | $form .= Xml::buildForm( $fields, 'globalblocking-unblock-submit' ); |
Index: trunk/extensions/GlobalBlocking/SpecialGlobalBlockStatus.php |
— | — | @@ -154,7 +154,7 @@ |
155 | 155 | $fields = array(); |
156 | 156 | |
157 | 157 | // uses ipaddress msg |
158 | | - $fields['ipaddress'] = Xml::input( 'address', 45, $this->mAddress ); |
| 158 | + $fields['globalblocking-ipaddress'] = Xml::input( 'address', 45, $this->mAddress ); |
159 | 159 | $fields['globalblocking-whitelist-reason'] = Xml::input( 'wpReason', 45, $this->mReason ); |
160 | 160 | $fields['globalblocking-whitelist-status'] = Xml::checkLabel( wfMsgExt( 'globalblocking-whitelist-statuslabel', 'parsemag' ), 'wpWhitelistStatus', 'wpWhitelistStatus', $this->mCurrentStatus ); |
161 | 161 | |