build: Updating mediawiki/phan-taint-check-plugin to 1.3.0

And updating CoC link to use Special:MyLanguage (T202047).

Change-Id: I9830f95de17383a7f4fba6f323550bc9061acc06
This commit is contained in:
libraryupgrader 2018-08-19 11:06:26 +00:00 committed by Kunal Mehta
parent 5703436305
commit 223ff14572
4 changed files with 7 additions and 3 deletions

View file

@ -1 +1 @@
The development of this software is covered by a [Code of Conduct](https://www.mediawiki.org/wiki/Code_of_Conduct).
The development of this software is covered by a [Code of Conduct](https://www.mediawiki.org/wiki/Special:MyLanguage/Code_of_Conduct).

View file

@ -156,7 +156,7 @@ class FancyCaptcha extends SimpleCaptcha {
'required' => 'required',
// tab in before the edit textarea
'tabindex' => $tabIndex,
'placeholder' => wfMessage( 'fancycaptcha-imgcaptcha-ph' )
'placeholder' => wfMessage( 'fancycaptcha-imgcaptcha-ph' )->text()
]
);
if ( $this->action == 'createaccount' ) {

View file

@ -17,6 +17,6 @@
]
},
"extra": {
"phan-taint-check-plugin": "1.2.0"
"phan-taint-check-plugin": "1.3.0"
}
}

View file

@ -36,6 +36,10 @@ class CaptchaAuthenticationRequest extends AuthenticationRequest {
return $success;
}
/**
* @inheritDoc
* @suppress SecurityCheck-DoubleEscaped T202112
*/
public function getFieldInfo() {
$captcha = ConfirmEditHooks::getInstance();