settings.php 258 B

123456789101112131415
  1. <?php
  2. echo elgg_autop(elgg_echo('install:settings:instructions'));
  3. $vars['type'] = 'settings';
  4. $url = current_page_url();
  5. $form_vars = array(
  6. 'action' => $url,
  7. 'disable_security' => TRUE,
  8. );
  9. echo elgg_view_form('install/template', $form_vars, $vars);