Fix casing of dropdown-related methods

Methods gets renamed to lowercase variant in core (f1d7e68c)

Follow-Up: Ifda13ba9dee316709c424636ec3b285de8d0e9b1
Change-Id: I9a1e6d191bc5217e555d23746793ddee472faf47
This commit is contained in:
Umherirrender 2024-03-09 15:45:40 +01:00
parent ceb983f328
commit 373042d9d0

View file

@ -235,7 +235,7 @@ class SpecialNuke extends SpecialPage {
$nuke = $this->getPageTitle();
$options = Xml::listDropDownOptions(
$options = Xml::listDropdownOptions(
$this->msg( 'deletereason-dropdown' )->inContentLanguage()->text(),
[ 'other' => $this->msg( 'deletereasonotherlist' )->inContentLanguage()->text() ]
);
@ -247,7 +247,7 @@ class SpecialNuke extends SpecialPage {
'tabIndex' => 1,
'infusable' => true,
'value' => '',
'options' => Xml::listDropDownOptionsOoui( $options ),
'options' => Xml::listDropdownOptionsOoui( $options ),
] ),
[
'label' => $this->msg( 'deletecomment' )->text(),