From 730c231f93b897f05f7bd71dec0267322c9ada58 Mon Sep 17 00:00:00 2001 From: marcus Date: Wed, 7 Jan 2009 12:58:53 +0000 Subject: Refs #622: Missing command from failsafe view git-svn-id: https://code.elgg.org/elgg/trunk@2537 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/failsafe/settings/system.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'views/failsafe/settings/system.php') diff --git a/views/failsafe/settings/system.php b/views/failsafe/settings/system.php index 475ffc870..f9861cfcc 100644 --- a/views/failsafe/settings/system.php +++ b/views/failsafe/settings/system.php @@ -36,7 +36,9 @@ $languages = get_installed_translations(); $form_body .= "

" . elgg_echo('installation:language') . elgg_view("input/pulldown", array('internalname' => 'language', 'value' => $vars['config']->language, 'options_values' => $languages)) . "

"; - $form_body .= "

" . elgg_echo('installation:debug') . "
" .elgg_view("input/checkboxes", array('options' => array(elgg_echo('installation:debug:label')), 'internalname' => 'debug', 'value' => ($vars['config']->debug ? elgg_echo('installation:debug:label') : "") )) . "

"; + $form_body .= "

" . elgg_echo('installation:debug') . "
" .elgg_view("input/checkboxes", array('options' => array(elgg_echo('installation:debug:label')), 'internalname' => 'debug', 'value' => ($vars['config']->debug ? elgg_echo('installation:debug:label') : "") )) . "

"; + + $form_body .= "

" . elgg_echo('installation:httpslogin') . "
" .elgg_view("input/checkboxes", array('options' => array(elgg_echo('installation:httpslogin:label')), 'internalname' => 'https_login', 'value' => ($vars['config']->https_login ? elgg_echo('installation:httpslogin:label') : "") )) . "

"; $form_body .= "

" . elgg_echo('installation:disableapi') . "
"; $on = elgg_echo('installation:disableapi:label'); -- cgit v1.2.3