MDL-61625 persistent form: Add missing param to the constructor

This commit is contained in:
David Monllao 2018-03-11 22:23:15 +01:00
parent 1287039e62
commit f5bc604de0

View File

@ -80,9 +80,10 @@ abstract class persistent extends moodleform {
* @param string $target
* @param mixed $attributes
* @param bool $editable
* @param array $ajaxformdata
*/
public function __construct($action = null, $customdata = null, $method = 'post', $target = '',
$attributes = null, $editable = true) {
$attributes = null, $editable = true, $ajaxformdata=null) {
if (empty(static::$persistentclass)) {
throw new coding_exception('Static property $persistentclass must be set.');
} else if (!is_subclass_of(static::$persistentclass, 'core\\persistent')) {
@ -106,7 +107,7 @@ abstract class persistent extends moodleform {
$this->persistent->from_record($persistendata);
unset($customdata['persistent']);
parent::__construct($action, $customdata, $method, $target, $attributes, $editable);
parent::__construct($action, $customdata, $method, $target, $attributes, $editable, $ajaxformdata);
// Load the defaults.
$this->set_data($this->get_default_data());