From c432b52c748479b08a4b80678e3bec1f387ecf76 Mon Sep 17 00:00:00 2001 From: dratini0 Date: Mon, 23 Mar 2015 16:12:03 +0100 Subject: [PATCH] Changed the disputed while loop to a single if. --- lib/private/files.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/private/files.php b/lib/private/files.php index 3a2e291630b..6d165bcc705 100644 --- a/lib/private/files.php +++ b/lib/private/files.php @@ -184,8 +184,8 @@ class OC_Files { if (isset($_SERVER['MOD_X_ACCEL_REDIRECT_ENABLED'])) { if (isset($_SERVER['MOD_X_ACCEL_REDIRECT_PREFIX'])) { $prefix = $_SERVER['MOD_X_ACCEL_REDIRECT_PREFIX']; - // nginx is picky about double slashes - while($prefix[strlen($prefix) - 1] === '/'){ + // nginx is picky about double slashes when matching locations + if($prefix[strlen($prefix) - 1] === '/'){ $prefix = substr($prefix, 0, -1); } $filename = $prefix . \OC\Files\Filesystem::getLocalFile($filename); -- 2.39.5