Changed the disputed while loop to a single if.
This commit is contained in:
parent
10e13b172a
commit
c432b52c74
1 changed files with 2 additions and 2 deletions
|
@ -184,8 +184,8 @@ class OC_Files {
|
||||||
if (isset($_SERVER['MOD_X_ACCEL_REDIRECT_ENABLED'])) {
|
if (isset($_SERVER['MOD_X_ACCEL_REDIRECT_ENABLED'])) {
|
||||||
if (isset($_SERVER['MOD_X_ACCEL_REDIRECT_PREFIX'])) {
|
if (isset($_SERVER['MOD_X_ACCEL_REDIRECT_PREFIX'])) {
|
||||||
$prefix = $_SERVER['MOD_X_ACCEL_REDIRECT_PREFIX'];
|
$prefix = $_SERVER['MOD_X_ACCEL_REDIRECT_PREFIX'];
|
||||||
// nginx is picky about double slashes
|
// nginx is picky about double slashes when matching locations
|
||||||
while($prefix[strlen($prefix) - 1] === '/'){
|
if($prefix[strlen($prefix) - 1] === '/'){
|
||||||
$prefix = substr($prefix, 0, -1);
|
$prefix = substr($prefix, 0, -1);
|
||||||
}
|
}
|
||||||
$filename = $prefix . \OC\Files\Filesystem::getLocalFile($filename);
|
$filename = $prefix . \OC\Files\Filesystem::getLocalFile($filename);
|
||||||
|
|
Loading…
Reference in a new issue