diff options
Diffstat (limited to 'views/failsafe/install/forms/settings.php')
-rw-r--r-- | views/failsafe/install/forms/settings.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/views/failsafe/install/forms/settings.php b/views/failsafe/install/forms/settings.php new file mode 100644 index 000000000..67cba10f6 --- /dev/null +++ b/views/failsafe/install/forms/settings.php @@ -0,0 +1,20 @@ +<?php +/** + * Site settings form + * + * @uses $vars['variables'] Array of form variables. See ElggInstaller. + */ + +$vars['type'] = 'settings'; +$form_body = elgg_view('install/forms/template', $vars); + +// @todo bug in current_page_url() with :8080 sites +//$url = current_page_url(); +$url = '/install.php?step=settings'; + +$params = array( + 'body' => $form_body, + 'action' => $url, + 'disable_security' => TRUE, +); +echo elgg_view('input/form', $params); |