diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-01-07 12:58:53 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-01-07 12:58:53 +0000 |
commit | 730c231f93b897f05f7bd71dec0267322c9ada58 (patch) | |
tree | a435f110bb072fb477fe86d6788671f5fc9dd59c /views/failsafe | |
parent | e326cd17dba4d4748754f8542c3c714be7f4f6df (diff) | |
download | elgg-730c231f93b897f05f7bd71dec0267322c9ada58.tar.gz elgg-730c231f93b897f05f7bd71dec0267322c9ada58.tar.bz2 |
Refs #622: Missing command from failsafe view
git-svn-id: https://code.elgg.org/elgg/trunk@2537 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/failsafe')
-rw-r--r-- | views/failsafe/settings/system.php | 4 |
1 files changed, 3 insertions, 1 deletions
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 .= "<p>" . elgg_echo('installation:language') . elgg_view("input/pulldown", array('internalname' => 'language', 'value' => $vars['config']->language, 'options_values' => $languages)) . "</p>";
- $form_body .= "<p class=\"admin_debug\">" . elgg_echo('installation:debug') . "<br />" .elgg_view("input/checkboxes", array('options' => array(elgg_echo('installation:debug:label')), 'internalname' => 'debug', 'value' => ($vars['config']->debug ? elgg_echo('installation:debug:label') : "") )) . "</p>";
+ $form_body .= "<p class=\"admin_debug\">" . elgg_echo('installation:debug') . "<br />" .elgg_view("input/checkboxes", array('options' => array(elgg_echo('installation:debug:label')), 'internalname' => 'debug', 'value' => ($vars['config']->debug ? elgg_echo('installation:debug:label') : "") )) . "</p>"; + + $form_body .= "<p class=\"admin_debug\">" . elgg_echo('installation:httpslogin') . "<br />" .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') : "") )) . "</p>";
$form_body .= "<p class=\"admin_debug\">" . elgg_echo('installation:disableapi') . "<br />"; $on = elgg_echo('installation:disableapi:label'); |