From 656a2efcc2f4495b09a5d34b8980398690767db4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bartosz=20Dziewo=C5=84ski?= Date: Wed, 17 Jan 2018 17:41:46 +0100 Subject: [PATCH] EditPage: Update Save/Publish button flag from 'constructive' to 'progressive' OOUI 'constructive' flag was removed in OOUI v0.25.0. Change-Id: I751d45cca3919dcf67b79bc1de6a085ea018bf58 --- includes/EditPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/EditPage.php b/includes/EditPage.php index a41e6d9177..62307b66c9 100644 --- a/includes/EditPage.php +++ b/includes/EditPage.php @@ -4405,7 +4405,7 @@ class EditPage { 'inputId' => 'wpSave', // Support: IE 6 – Use , otherwise it can't distinguish which button was clicked 'useInputTag' => true, - 'flags' => [ 'constructive', 'primary' ], + 'flags' => [ 'progressive', 'primary' ], 'label' => $buttonLabel, 'infusable' => true, 'type' => 'submit', -- 2.20.1