Skip to content

Commit 7795bd6

Browse files
committed
Merge branch 'release/6.0.3'
2 parents 8cea753 + 972939e commit 7795bd6

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# v6.0.3
2+
## 05/05/2022
3+
4+
1. [](#bugfix)
5+
* Regression: Fixed broken `addForm()` method
6+
17
# v6.0.2
28
## 05/02/2022
39

blueprints.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Form
22
slug: form
33
type: plugin
4-
version: 6.0.2
4+
version: 6.0.3
55
description: Enables the forms handling
66
icon: check-square
77
author:

form.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -806,6 +806,8 @@ public function addForm(?string $route, ?FormInterface $form): void
806806
$name = $form->getName();
807807

808808
if (!isset($this->forms[$route][$name])) {
809+
$form['_page_routable'] = true;
810+
809811
$this->forms[$route][$name] = $form;
810812
$this->recache_forms = true;
811813
}

0 commit comments

Comments
 (0)