Skip to content

Commit c3a449c

Browse files
author
Aaron Carlino
authored
Merge pull request #49 from n8-sd/master
Fix __construct error in BootstrapDropdownField
2 parents c30ee98 + 3433c68 commit c3a449c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

code/BootstrapDropdownField.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ class BootstrapDropdownField extends DropdownField {
44
protected $optionsList;
55

66
public function __construct($name, $title = NULL, $options = array(), $value = NULL) {
7-
parent::__construct($name, $title, $value);
7+
parent::__construct($name, $title,$options, $value);
88
$this->optionsList = $options;
99

1010
return $this;

0 commit comments

Comments
 (0)