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:12:05 -0500 |
commit | 1fc3ca62eeb334f55fc1ac6503df00f7e06edbb1 (patch) | |
tree | ca1853072a5c8cd87764f7796861c2c3c9821cdf /web/html/login.php | |
parent | 7e38e6d48957f60feaddda9a3eaf31d12b5b8548 (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 ab7bac9..f0dbb7c 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>'); ?> |