mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-07 09:13:02 +02:00
Resolved bugs:
741 and 793: Added user does not appear in listing. 769: show email address in adviser mode when editing user profil. 800: get_absolute_root_url does not work with https protocol. git-svn-id: http://piwigo.org/svn/branches/branch-1_7@2228 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -60,7 +60,15 @@ function get_absolute_root_url($with_scheme=true)
|
||||
$url = '';
|
||||
if ($with_scheme)
|
||||
{
|
||||
$url .= 'http://'.$_SERVER['HTTP_HOST'];
|
||||
if (empty($_SERVER['HTTPS']))
|
||||
{
|
||||
$url .= 'http://';
|
||||
}
|
||||
else
|
||||
{
|
||||
$url .= 'https://';
|
||||
}
|
||||
$url .= $_SERVER['HTTP_HOST'];
|
||||
if ($_SERVER['SERVER_PORT'] != 80)
|
||||
{
|
||||
$url_port = ':'.$_SERVER['SERVER_PORT'];
|
||||
|
||||
Reference in New Issue
Block a user