From d2c6f7b72ef62ad0ae3637d800eed6b087a2c53e Mon Sep 17 00:00:00 2001 From: "matth@ultra" Date: Mon, 2 Sep 2024 00:00:05 +0200 Subject: [PATCH] make uri relative --- src/imgsort.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imgsort.php b/src/imgsort.php index 5bf9756..ccf8e62 100644 --- a/src/imgsort.php +++ b/src/imgsort.php @@ -5,7 +5,7 @@ // All paths require trailing slashes! $rootDir = __DIR__ . '/../images/'; // The URI at which the rootDir will be served - $rootPath = '/images/'; + $rootPath = 'images/'; // Path of the directory containing all the files to be sorted, relative to $rootDir $stagingDirName = '.sort/';