1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 03:54:10 +01:00

[ticket/11247] Fix wrong property reference in flock class.

PHPBB3-11247
This commit is contained in:
Oleg Pudeyev 2012-12-05 01:54:29 -05:00
parent d9f554fe03
commit a8d02ffc27

View File

@ -67,7 +67,7 @@ class phpbb_lock_flock
*/
public function acquire()
{
if ($this->locked)
if ($this->lock_fp)
{
return false;
}