minor fix
This commit is contained in:
parent
7be56daca7
commit
ee00246269
1 changed files with 2 additions and 1 deletions
|
@ -82,7 +82,8 @@ function serverUrl($return_subfolder = false)
|
|||
$serverport = ($_SERVER["SERVER_PORT"]=='80' || ($https && $_SERVER["SERVER_PORT"]=='443') ? '' : ':'.$_SERVER["SERVER_PORT"]);
|
||||
if($return_subfolder === true) {
|
||||
$path = pathinfo( $_SERVER['PHP_SELF'] );
|
||||
$subfolder = $path['dirname'] .'/';
|
||||
if( !empty( $_SERVER['PHP_SELF'] ))
|
||||
$subfolder = $path['dirname'] .'/';
|
||||
} else $subfolder = '';
|
||||
return 'http'.($https?'s':'').'://'.$_SERVER["SERVER_NAME"].$serverport.$subfolder;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue