diff options
author | Amir Sarabadani <ladsgroup@gmail.com> | 2025-01-11 05:11:34 +0100 |
---|---|---|
committer | Ladsgroup <Ladsgroup@gmail.com> | 2025-01-13 03:55:54 +0000 |
commit | b8e72e0e5d2c9d65304f07f07bc42de4247ac0b4 (patch) | |
tree | f6734e806abbb5ad59a969e62c4b8eb9fc7b14c0 | |
parent | 3246c85a07cb763c60bf1df404f00245ee683dec (diff) | |
download | mediawikicore-b8e72e0e5d2c9d65304f07f07bc42de4247ac0b4.tar.gz mediawikicore-b8e72e0e5d2c9d65304f07f07bc42de4247ac0b4.zip |
installer: Make the back button not destructive
As pointed out by Volker, this is not a destructive action.
Change-Id: Ibc72d9e502cf9341610aa6d134ff198e257c748f
-rw-r--r-- | includes/installer/WebInstallerPage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/installer/WebInstallerPage.php b/includes/installer/WebInstallerPage.php index 89420bb0667c..0280da9807f3 100644 --- a/includes/installer/WebInstallerPage.php +++ b/includes/installer/WebInstallerPage.php @@ -114,7 +114,7 @@ abstract class WebInstallerPage { [ 'name' => "submit-$back", 'tabindex' => $this->parent->nextTabIndex(), - 'class' => 'cdx-button cdx-button--action-destructive' + 'class' => 'cdx-button cdx-button--action-default' ] ) . "\n"; } |