diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-11-23 00:12:05 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-11-23 00:37:22 -0500 |
commit | 76daccca0cfa86ccb43628f56e628475a0cfe98c (patch) | |
tree | 8deef4e3b33c609cf90b30338e322e719cca0351 /web/html/login.php | |
parent | 4f33a092bc3883acb9b0022e4f17742533b13a10 (diff) |
Make the instance name and domain configurable.
Diffstat (limited to 'web/html/login.php')
-rw-r--r-- | web/html/login.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/html/login.php b/web/html/login.php index 7345439..f6b5b87 100644 --- a/web/html/login.php +++ b/web/html/login.php @@ -11,10 +11,10 @@ if (!$disable_http_login || (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'])) { $login_error = $login['error']; } -html_header('AUR ' . __("Login")); +html_header(config_get('options', 'branding_shortname') . ' ' . __("Login")); ?> <div id="dev-login" class="box"> - <h2>AUR <?= __('Login') ?></h2> + <h2><?= config_get('options', 'branding_shortname'); ?> <?= __('Login') ?></h2> <?php if (isset($_COOKIE["AURSID"])): ?> <p> <?= __("Logged-in as: %s", '<strong>' . username_from_sid($_COOKIE["AURSID"]) . '</strong>'); ?> |