그누보드 5.0.31 수정내역 적용

This commit is contained in:
chicpro
2015-03-10 13:47:21 +09:00
parent b477c2e720
commit a6a2183c7d
14 changed files with 30 additions and 96 deletions

View File

@ -41,7 +41,10 @@ if (G5_IS_MOBILE) {
if(G5_DEVICE_BUTTON_DISPLAY && !G5_IS_MOBILE) {
$seq = 0;
$p = parse_url(G5_URL);
$href = $p['scheme'].'://'.$p['host'].$_SERVER['PHP_SELF'];
$href = $p['scheme'].'://'.$p['host'];
if(isset($p['port']) && $p['port'])
$href .= ':'.$p['port'];
$href .= $_SERVER['PHP_SELF'];
if($_SERVER['QUERY_STRING']) {
$sep = '?';
foreach($_GET as $key=>$val) {