Skip to content
Snippets Groups Projects
Commit 26bdcae0 authored by aydreeihn's avatar aydreeihn
Browse files

Issue: DynamicFormEntry render

This commit fixes an issue where we did not correctly change the values passed to the render function that was updated to work with PHP 7.1
parent 587be568
No related branches found
No related tags found
No related merge requests found
...@@ -84,7 +84,7 @@ if ($user) { ?> ...@@ -84,7 +84,7 @@ if ($user) { ?>
<table width="100%" class="fixed"> <table width="100%" class="fixed">
<?php <?php
$form = $form ?: UserForm::getInstance(); $form = $form ?: UserForm::getInstance();
$form->render(true, __('Create New User'), array('mode' => 'create')); ?> $form->render(['staff' => true, 'title' => __('Create New User'), 'mode' => 'create']); ?>
</table> </table>
<hr> <hr>
<p class="full-width"> <p class="full-width">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment