diff options
author | MaZderMind | 2016-10-17 23:16:37 +0200 |
---|---|---|
committer | MaZderMind | 2016-10-17 23:16:37 +0200 |
commit | 6862b72e5210c154dfa99b5415e1b99259ca7829 (patch) | |
tree | 41d8847545a475352a7c92258c6a2dffb38c9009 /index.php | |
parent | cfb0b6ce7e10cd29ad96267367720f97a6d23992 (diff) |
pass forceopen on to http/https-url
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -67,8 +67,8 @@ try { if(startswith('//', @$GLOBALS['CONFIG']['BASEURL'])) { $tpl->set(array( - 'httpsurl' => forceslash(forceslash('https:'.$GLOBALS['CONFIG']['BASEURL']).@$GLOBALS['MANDATOR']).forceslash($route), - 'httpurl' => forceslash(forceslash('http:'. $GLOBALS['CONFIG']['BASEURL']).@$GLOBALS['MANDATOR']).forceslash($route), + 'httpsurl' => forceslash(forceslash('https:'.$GLOBALS['CONFIG']['BASEURL']).@$GLOBALS['MANDATOR']).forceslash($route).url_params(), + 'httpurl' => forceslash(forceslash('http:'. $GLOBALS['CONFIG']['BASEURL']).@$GLOBALS['MANDATOR']).forceslash($route).url_params(), )); } |