From 0f0e903a4a28f62c2e529e502f098e1b654bad66 Mon Sep 17 00:00:00 2001 From: xiaoz Date: Sun, 24 May 2020 22:06:44 +0800 Subject: [PATCH] fix bug --- functions/indexes.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/functions/indexes.php b/functions/indexes.php index 8ac76c0..d68c3b2 100644 --- a/functions/indexes.php +++ b/functions/indexes.php @@ -32,7 +32,8 @@ function tree($directory,$ignore) { $url = str_replace("../","",$url); $url = str_replace("\/","/",$url); $url = str_replace("//","/",$url); - echo "
  • $url
  • \n"; + $url = str_replace("//","/",$url); + echo "
  • $url
  • \n"; } }