From 584de11eb17f299d34c8fc751d8e3c00cd8d60df Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Thu, 24 Oct 2013 16:34:07 -0700 Subject: [PATCH] Fixed broken quickDescribe() method Change-Id: Ic68f483c4008ff6ae8c4accef2f9d1f180a5d377 --- includes/filebackend/FileBackendStore.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/filebackend/FileBackendStore.php b/includes/filebackend/FileBackendStore.php index 0921e99f38..29089c9eb7 100644 --- a/includes/filebackend/FileBackendStore.php +++ b/includes/filebackend/FileBackendStore.php @@ -1035,7 +1035,7 @@ abstract class FileBackendStore extends FileBackend { // Clear any file cache entries $this->clearCache(); - $supportedOps = array( 'create', 'store', 'copy', 'move', 'delete', 'null' ); + $supportedOps = array( 'create', 'store', 'copy', 'move', 'delete', 'describe', 'null' ); $async = ( $this->parallelize === 'implicit' && count( $ops ) > 1 ); $maxConcurrency = $this->concurrency; // throttle -- 2.20.1