diff --git a/src/imgsort.php b/src/imgsort.php index 2cb1f9c..f0b954a 100644 --- a/src/imgsort.php +++ b/src/imgsort.php @@ -2,11 +2,12 @@ // CONFIGURATION // Absolute path to the directory containing all image directories as well as the staging directory // All other paths (in the user interface) are relative to $rootDir - $rootDir = __DIR__ . '/../test/'; + // All paths require trailing slashes! + $rootDir = __DIR__ . '/../images/'; // The URI at which the rootDir will be served - $rootPath = '/test/'; + $rootPath = '/images/'; // Path of the directory containing all the files to be sorted, relative to $rootDir - $stagingDirName = 'staging/'; + $stagingDirName = '.sort/'; // Not configuration anymore!