Index: trunk/phase3/includes/filerepo/file/LocalFile.php |
— | — | @@ -1444,7 +1444,8 @@ |
1445 | 1445 | $this->locked++; |
1446 | 1446 | } |
1447 | 1447 | |
1448 | | - return $dbw->selectField( 'image', '1', array( 'img_name' => $this->getName() ), __METHOD__ ); |
| 1448 | + return $dbw->selectField( 'image', '1', |
| 1449 | + array( 'img_name' => $this->getName() ), __METHOD__, array( 'FOR UPDATE' ) ); |
1449 | 1450 | } |
1450 | 1451 | |
1451 | 1452 | /** |