From 519883bd67c960998e8cb2eb0cda52f3764192f7 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Fri, 8 Nov 2013 21:24:24 -0800 Subject: [PATCH] Fixed loading of stat cache entries into the wrong key * Silly bug from 2afdc066f52b54faf63f9c980f7ef6a7841dd094 which caused HEAD requests. Probably missed in local testing due to memcached. Change-Id: I3b82ffe964e252eafa5254f7752e5ba45b49ba0e --- includes/filebackend/SwiftFileBackend.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/filebackend/SwiftFileBackend.php b/includes/filebackend/SwiftFileBackend.php index ec2e2c0121..1787d66f2c 100644 --- a/includes/filebackend/SwiftFileBackend.php +++ b/includes/filebackend/SwiftFileBackend.php @@ -1706,7 +1706,7 @@ class SwiftFileBackendFileList extends SwiftFileBackendList { $relPath = substr( $path, $this->suffixStart ); if ( is_array( $stat ) ) { $storageDir = rtrim( $this->params['dir'], '/' ); - $this->backend->loadListingStatInternal( "$storageDir/$path", $stat ); + $this->backend->loadListingStatInternal( "$storageDir/$relPath", $stat ); } return $relPath; } -- 2.20.1