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 50cc7fd commit e85e3ffCopy full SHA for e85e3ff
CHANGELOG.md
@@ -1,3 +1,8 @@
1
+## 1.1.1
2
+
3
+Bugfixes:
4
+ - Unbuffered output regression fix since 1.1.0
5
6
## 1.1.0
7
8
Breaking changes:
src/Form.php
@@ -266,6 +266,14 @@ public function method_field() {
266
}
267
268
private function start() {
269
+ if ( $this->unbuffered ){
270
+ if ( $this->attr['action'] !== false ){
271
+ $attr = FormUtils::serialize_attr($this->attr);
272
+ echo "<form id=\"{$this->id}\" $attr>\n";
273
+ }
274
+ return;
275
276
277
if ( $this->attr['action'] !== false ){
278
$this->layout->preamble($this);
279
0 commit comments