Skip to content

Commit d2ffea6

Browse files
committed
Remove support for MW 1.37
Change-Id: I4b46fa6f592cfe4deb1ec02d1298b816f6c3533c
1 parent 6f24790 commit d2ffea6

File tree

5 files changed

+5
-24
lines changed

5 files changed

+5
-24
lines changed

INSTALL

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[[Page Forms 5.8-alph]]
1+
[[Page Forms 5.8-alpha]]
22

33
Contents:
44
* Disclaimer
@@ -17,7 +17,7 @@ For a proper legal disclaimer, see the file "COPYING".
1717

1818
== Requirements ==
1919

20-
The extension requires MediaWiki 1.37 or greater.
20+
The extension requires MediaWiki 1.38 or greater.
2121

2222
== Installation ==
2323

extension.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"PFHooks::initialize"
3131
],
3232
"requires": {
33-
"MediaWiki": ">= 1.37.0"
33+
"MediaWiki": ">= 1.38.0"
3434
},
3535
"GroupPermissions": {
3636
"*": {

includes/parserfunctions/PF_AutoEdit.php

+1-6
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,7 @@ public static function run( Parser $parser ) {
2424
global $wgPageFormsAutoeditNamespaces;
2525

2626
$parser->getOutput()->addModules( [ 'ext.pageforms.autoedit' ] );
27-
if ( method_exists( $parser->getOutput(), 'setPreventClickjacking' ) ) {
28-
// MW 1.38+
29-
$parser->getOutput()->setPreventClickjacking( true );
30-
} else {
31-
$parser->getOutput()->preventClickjacking( true );
32-
}
27+
$parser->getOutput()->setPreventClickjacking( true );
3328

3429
// Set defaults.
3530
$formcontent = '';

includes/parserfunctions/PF_DefaultForm.php

+1-7
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,7 @@ public static function run( Parser $parser ) {
1919
}
2020
$defaultForm = $params[1];
2121

22-
$parserOutput = $parser->getOutput();
23-
if ( method_exists( $parserOutput, 'setPageProperty' ) ) {
24-
// MW 1.38+
25-
$parserOutput->setPageProperty( 'PFDefaultForm', $defaultForm );
26-
} else {
27-
$parserOutput->setProperty( 'PFDefaultForm', $defaultForm );
28-
}
22+
$parser->getOutput()->setPageProperty( 'PFDefaultForm', $defaultForm );
2923

3024
// Display information on the page, if this is a category.
3125
if ( $curTitle->getNamespace() == NS_CATEGORY ) {

skins/PageForms.css

-8
Original file line numberDiff line numberDiff line change
@@ -335,14 +335,6 @@ input.pfComboBoxActual {
335335
border: 1px solid #ddd !important;
336336
}
337337

338-
/**
339-
* The box-sizing in the DateTimeInputWidget is incorrectly set to
340-
* "border-box" for MW versions before 1.38, which leads to too-narrow inputs.
341-
*/
342-
.mw-widgets-datetime-dateTimeInputWidget-field {
343-
box-sizing: content-box !important;
344-
}
345-
346338
/* The standard MediaWiki editOptions class lacks a top border. */
347339
div.editOptions {
348340
border: 1px solid #c8ccd1;

0 commit comments

Comments
 (0)