Per wikitech-l consensus: https://lists.wikimedia.org/pipermail/wikitech-l/2016-February/084821.html Notes: * Disabled CallTimePassByReference due to false positives (T127163) Change-Id: I2c8ce713ce6600a0bb7bf67537c87044c7a45c4b
11 lines
267 B
PHP
11 lines
267 B
PHP
<?php
|
|
|
|
/**
|
|
* Add a submit button inline in the form (as opposed to
|
|
* HTMLForm::addButton(), which will add it at the end).
|
|
*/
|
|
class HTMLSubmitField extends HTMLButtonField {
|
|
protected $buttonType = 'submit';
|
|
|
|
protected $mFlags = [ 'primary', 'constructive' ];
|
|
}
|