1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 23:35:56 +00:00

use clean_filename() instead of basename()/clean() combinations in a bunch of places

This commit is contained in:
Andrew Dolgov
2019-08-16 09:31:16 +03:00
parent 9c366a4811
commit d94348421d
3 changed files with 3 additions and 3 deletions

View File

@@ -88,7 +88,7 @@ class Backend extends Handler {
}
function help() {
$topic = basename(clean($_REQUEST["topic"])); // only one for now
$topic = clean_filename($_REQUEST["topic"]); // only one for now
if ($topic == "main") {
$info = get_hotkeys_info();