diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-25 18:44:57 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-25 18:44:57 +0000 |
commit | 8272be76936f9913b4bb29a6ac7d052ac39c8323 (patch) | |
tree | aeed9f15af1ba5e6d6a847d5dec95676f3373179 /views/installation/install/forms/settings.php | |
parent | 75493dfb8cfe3b4a329d8255a55fdf9c534f8fbd (diff) | |
download | elgg-8272be76936f9913b4bb29a6ac7d052ac39c8323.tar.gz elgg-8272be76936f9913b4bb29a6ac7d052ac39c8323.tar.bz2 |
Converted installation forms to use elgg_view_form and the /forms/ directory
git-svn-id: http://code.elgg.org/elgg/trunk@8465 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/installation/install/forms/settings.php')
-rw-r--r-- | views/installation/install/forms/settings.php | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/views/installation/install/forms/settings.php b/views/installation/install/forms/settings.php deleted file mode 100644 index 3aa90c10b..000000000 --- a/views/installation/install/forms/settings.php +++ /dev/null @@ -1,21 +0,0 @@ -<?php -/** - * Site settings form - * - * @uses $vars['variables'] Array of form variables. See ElggInstaller. - * - * @todo Forms 1.8: Convert to use elgg_view_form - */ - -$vars['type'] = 'settings'; -$form_body = elgg_view('install/forms/template', $vars); - -$url = current_page_url(); - -$params = array( - 'body' => $form_body, - 'action' => $url, - 'disable_security' => TRUE, - 'js' => 'onsubmit="return elggCheckFormSubmission()"', -); -echo elgg_view('input/form', $params); |