From: Aaron Date: Thu, 17 May 2012 23:17:01 +0000 (-0700) Subject: [FileBackend] Fixed parallelize check in doQuickOperationsInternal(). X-Git-Tag: 1.31.0-rc.0~23579^2 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=0624af8f2e9666fbe0820c0caca6d7ea3c6eeb7b;p=lhc%2Fweb%2Fwiklou.git [FileBackend] Fixed parallelize check in doQuickOperationsInternal(). Change-Id: Ia552a5094e61f418bc3fa8958f1a4869018be536 --- diff --git a/includes/filerepo/backend/FileBackendStore.php b/includes/filerepo/backend/FileBackendStore.php index 5537e9378f..8593423a8f 100644 --- a/includes/filerepo/backend/FileBackendStore.php +++ b/includes/filerepo/backend/FileBackendStore.php @@ -945,7 +945,7 @@ abstract class FileBackendStore extends FileBackend { final protected function doQuickOperationsInternal( array $ops ) { $status = Status::newGood(); - $async = $this->parallelize; + $async = ( $this->parallelize === 'implicit' ); $maxConcurrency = $this->concurrency; // throttle $statuses = array(); // array of (index => Status)