From 261717515803bcba87a04494a5cc6a86f38505c3 Mon Sep 17 00:00:00 2001 From: Terranom674 Date: Thu, 3 Sep 2026 14:31:44 +0200 Subject: [PATCH] Fix Piwigo root resolution in WebDAV warmup audit --- runtime/lib/webdav-warmup-audit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/lib/webdav-warmup-audit.php b/runtime/lib/webdav-warmup-audit.php index cd2bfa0..38e44a6 100644 --- a/runtime/lib/webdav-warmup-audit.php +++ b/runtime/lib/webdav-warmup-audit.php @@ -5,7 +5,7 @@ if (PHP_SAPI !== 'cli') exit; } -$piwigo_root = realpath(dirname(__DIR__, 3)); +$piwigo_root = realpath(dirname(__DIR__, 4)); if ($piwigo_root === false) { fwrite(STDERR, "Piwigo-Root wurde nicht gefunden.\n");