We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a37795c commit a1fa5ffCopy full SHA for a1fa5ff
src/bootbuilder/Controls/Hidden.php
@@ -10,7 +10,9 @@ public function __construct($name, $value = "") {
10
}
11
12
public function renderBasic() {
13
- $html = "<input type='hidden' name='$this->name' value='$this->value'>";
+ $html = "<input type='hidden' name='$this->name' value='$this->value'";
14
+ if($this->id) $html .= " id='$this->id'";
15
+ $html .= ">";
16
return $html;
17
18
0 commit comments