aboutsummaryrefslogtreecommitdiff
path: root/views/failsafe/install/forms/settings.php
blob: 67cba10f629f98b08a239610e4a2250c0e282e3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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);