aboutsummaryrefslogtreecommitdiff
path: root/views/installation/install/pages/settings.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/installation/install/pages/settings.php')
-rw-r--r--views/installation/install/pages/settings.php12
1 files changed, 11 insertions, 1 deletions
diff --git a/views/installation/install/pages/settings.php b/views/installation/install/pages/settings.php
index 6f20573ef..d1fd0a9ff 100644
--- a/views/installation/install/pages/settings.php
+++ b/views/installation/install/pages/settings.php
@@ -2,4 +2,14 @@
echo autop(elgg_echo('install:settings:instructions'));
-echo elgg_view('install/forms/settings', $vars);
+$vars['type'] = 'settings';
+
+$url = current_page_url();
+
+$form_vars = array(
+ 'action' => $url,
+ 'disable_security' => TRUE,
+ 'onsubmit' => 'return elggCheckFormSubmission()',
+);
+
+echo elgg_view_form('install/template', $form_vars, $vars);