blob: 30a1deb5a8b64c6bb1ab408010e544ddef73ac1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
echo autop(elgg_echo('install:settings:instructions'));
$vars['type'] = 'settings';
$url = current_page_url();
$form_vars = array(
'action' => $url,
'disable_security' => TRUE,
);
echo elgg_view_form('install/template', $form_vars, $vars);
|