aboutsummaryrefslogtreecommitdiff
path: root/views/default/settings/system.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/settings/system.php')
-rw-r--r--views/default/settings/system.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/views/default/settings/system.php b/views/default/settings/system.php
index 2ddd8ac7b..be9b00dee 100644
--- a/views/default/settings/system.php
+++ b/views/default/settings/system.php
@@ -35,7 +35,10 @@
$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');