Changed the disputed while loop to a single if.

remotes/origin/versions-cleanup
dratini0 10 years ago
parent 10e13b172a
commit c432b52c74
  1. 4
      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);

Loading…
Cancel
Save