mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
edit final link to homepage while setup
This commit is contained in:
parent
0b9f90630b
commit
c4cab440ac
3 changed files with 16 additions and 16 deletions
|
|
@ -80,6 +80,21 @@ function formatDate3($format, $ay, $am, $ad, $lang)
|
|||
return strtr($format, array('Y'=>$Y, 'y'=>$y, 'F'=>$F, 'M'=>$M, 'n'=>$n, 'm'=>$m, 'd'=>$d, 'j'=>$j));
|
||||
}
|
||||
|
||||
function getRequestUri()
|
||||
{
|
||||
// Do not use HTTP_X_REWRITE_URL due to CVE-2018-14773
|
||||
// SCRIPT_NAME or PATH_INFO ?
|
||||
if (isset($_SERVER['REQUEST_URI'])) {
|
||||
return $_SERVER['REQUEST_URI'];
|
||||
}
|
||||
else if (isset($_SERVER['ORIG_PATH_INFO'])) // IIS 5.0 CGI
|
||||
{
|
||||
$uri = $_SERVER['ORIG_PATH_INFO']; //has no query
|
||||
if (!empty($_SERVER['QUERY_STRING'])) $uri .= '?'. $_SERVER['QUERY_STRING'];
|
||||
return $uri;
|
||||
}
|
||||
}
|
||||
|
||||
function url_dir($url, $onlyPath = 1)
|
||||
{
|
||||
if (false !== $p = strpos($url, '?')) {
|
||||
|
|
|
|||
15
src/init.php
15
src/init.php
|
|
@ -266,21 +266,6 @@ function reset_mttinfo($key)
|
|||
unset( $_mttinfo[$key] );
|
||||
}
|
||||
|
||||
function getRequestUri()
|
||||
{
|
||||
// Do not use HTTP_X_REWRITE_URL due to CVE-2018-14773
|
||||
// SCRIPT_NAME or PATH_INFO ?
|
||||
if (isset($_SERVER['REQUEST_URI'])) {
|
||||
return $_SERVER['REQUEST_URI'];
|
||||
}
|
||||
else if (isset($_SERVER['ORIG_PATH_INFO'])) // IIS 5.0 CGI
|
||||
{
|
||||
$uri = $_SERVER['ORIG_PATH_INFO']; //has no query
|
||||
if (!empty($_SERVER['QUERY_STRING'])) $uri .= '?'. $_SERVER['QUERY_STRING'];
|
||||
return $uri;
|
||||
}
|
||||
}
|
||||
|
||||
function jsonExit($data)
|
||||
{
|
||||
header('Content-type: application/json; charset=utf-8');
|
||||
|
|
|
|||
|
|
@ -172,7 +172,7 @@ else
|
|||
}
|
||||
}
|
||||
|
||||
echo "Done<br><br> <b>Attention!</b> Delete this file for security reasons. <br><br> Go to <a href='index.php'>homepage</a>.";
|
||||
echo "Done<br><br> <b>Attention!</b> Delete this file for security reasons. <br><br> Go to <a href='". htmlspecialchars(url_dir(getRequestUri())). "'>homepage</a>.";
|
||||
printFooter();
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue