1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-08 17:56:52 +02:00

[feature/system-cron] Abstract the database locking mechanism out of cron.

Added a number of tests for the locking mechanism which can now lock
arbitrary config variables.

PHPBB3-9596
This commit is contained in:
Nils Adermann
2011-01-07 20:58:28 +01:00
committed by Oleg Pudeyev
parent 6e5e4721d8
commit 3a3a8bb96d
5 changed files with 243 additions and 109 deletions

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" ?>
<dataset>
<table name="phpbb_config">
<column>config_name</column>
<column>config_value</column>
<column>is_dynamic</column>
<row>
<value>foo_lock</value>
<value>1 abcd</value>
<value>1</value>
</row>
</table>
</dataset>