From: Sam Reed Date: Sun, 1 Jan 2012 23:31:20 +0000 (+0000) Subject: Followup r99892, actually use $options in query X-Git-Tag: 1.31.0-rc.0~25630 X-Git-Url: http://git.cyclocoop.org/%7B%24www_url%7Dadmin/membres/fiche.php?a=commitdiff_plain;h=408e63a29b856d8e707d43b58432c2011f5f9f4d;p=lhc%2Fweb%2Fwiklou.git Followup r99892, actually use $options in query --- diff --git a/includes/filerepo/LocalRepo.php b/includes/filerepo/LocalRepo.php index 8a58119c29..92d8f5d076 100644 --- a/includes/filerepo/LocalRepo.php +++ b/includes/filerepo/LocalRepo.php @@ -120,7 +120,7 @@ class LocalRepo extends FileRepo { array( 'oi_sha1' => $sha1, 'oi_archive_name ' . $dbw->buildLike( $dbw->anyString(), ".$ext" ), $dbw->bitAnd( 'oi_deleted', File::DELETED_FILE ) => File::DELETED_FILE ), - __METHOD__, array( 'FOR UPDATE' ) + __METHOD__, $options ); }