1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 07:05:56 +00:00

replace some usages of SELF_URL_PATH with get_self_url_prefix()

This commit is contained in:
Andrew Dolgov
2017-07-06 23:01:44 +03:00
parent 948471a44b
commit b2d42e960b
4 changed files with 9 additions and 8 deletions

View File

@@ -541,7 +541,7 @@ class Handler_Public extends Handler {
if ($_REQUEST['return']) {
header("Location: " . $_REQUEST['return']);
} else {
header("Location: " . SELF_URL_PATH);
header("Location: " . get_self_url_prefix());
}
}
}