Skip to content

Commit

Permalink
build: Updating mediawiki/phan-taint-check-plugin to 1.3.0
Browse files Browse the repository at this point in the history
And updating CoC link to use Special:MyLanguage (T202047).

Change-Id: I9830f95de17383a7f4fba6f323550bc9061acc06
  • Loading branch information
libraryupgrader authored and legoktm committed Aug 19, 2018
1 parent 5703436 commit 223ff14
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
@@ -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).
2 changes: 1 addition & 1 deletion FancyCaptcha/includes/FancyCaptcha.php
Expand Up @@ -156,7 +156,7 @@ public function getFormInformation( $tabIndex = 1 ) {
'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' ) {
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -17,6 +17,6 @@
]
},
"extra": {
"phan-taint-check-plugin": "1.2.0"
"phan-taint-check-plugin": "1.3.0"
}
}
4 changes: 4 additions & 0 deletions includes/auth/CaptchaAuthenticationRequest.php
Expand Up @@ -36,6 +36,10 @@ public function loadFromSubmission( array $data ) {
return $success;
}

/**
* @inheritDoc
* @suppress SecurityCheck-DoubleEscaped T202112
*/
public function getFieldInfo() {
$captcha = ConfirmEditHooks::getInstance();

Expand Down

0 comments on commit 223ff14

Please sign in to comment.