Skip to content

Commit

Permalink
Fix issue with FormGenerator
Browse files Browse the repository at this point in the history
  • Loading branch information
lcharette committed Feb 13, 2018
1 parent 2a18bd6 commit 4b1fd23
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change Log

## 2.0.3
- Fix issue with FormGenerator

## 2.0.2
- Fix assets bundle issue

Expand Down
2 changes: 1 addition & 1 deletion src/Controller/ConfigManagerController.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public function displayMain($request, $response, $args){

// Create the form
$config = $this->ci->config;
$form = new Form($schema, $config);
$form = new Form($schema, $config->all());

// The field names dot syntaxt won't make it across the HTTP POST request.
// Wrap them in a nice `data` array
Expand Down

0 comments on commit 4b1fd23

Please sign in to comment.