diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-10 08:33:39 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-10 08:33:39 +0000 |
commit | 79d8246b77654b98d0f60359ccc05f976879d5aa (patch) | |
tree | f3f1f2e7f28558bec8876a3f99dc3b74a4c97d61 /views/default/account/login_box.php | |
parent | 7b3d87e6d4ec5cc849952fd6461d627bcdba8654 (diff) | |
download | elgg-79d8246b77654b98d0f60359ccc05f976879d5aa.tar.gz elgg-79d8246b77654b98d0f60359ccc05f976879d5aa.tar.bz2 |
No sense in calling elgg_get_site_url() twice here...
git-svn-id: http://code.elgg.org/elgg/trunk@7280 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/account/login_box.php')
-rw-r--r-- | views/default/account/login_box.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/default/account/login_box.php b/views/default/account/login_box.php index 4942afb09..eb37d7554 100644 --- a/views/default/account/login_box.php +++ b/views/default/account/login_box.php @@ -10,7 +10,7 @@ $form_body = elgg_view('account/forms/login'); $login_url = elgg_get_site_url(); if ((isset($CONFIG->https_login)) && ($CONFIG->https_login)) { - $login_url = str_replace("http:", "https:", elgg_get_site_url()); + $login_url = str_replace("http:", "https:", $login_url); } ?> |