diff options
Diffstat (limited to 'views/failsafe/install/forms/settings.php')
-rw-r--r-- | views/failsafe/install/forms/settings.php | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/views/failsafe/install/forms/settings.php b/views/failsafe/install/forms/settings.php deleted file mode 100644 index 67cba10f6..000000000 --- a/views/failsafe/install/forms/settings.php +++ /dev/null @@ -1,20 +0,0 @@ -<?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); |