diff options
author | Vishal Pandey <vishpandey2014@gmail.com> | 2017-03-14 00:57:28 +0530 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-05-08 21:48:52 +0200 |
commit | 26acd8a5e43f6fc697728f04f4966b26bbd05230 (patch) | |
tree | 3ed10501036c2b527a1222a3ac72b4f7cf872682 /phpBB/phpbb/config | |
parent | 4282cf459ec1246ca5a92d4b82ae673695ff382e (diff) | |
download | forums-26acd8a5e43f6fc697728f04f4966b26bbd05230.tar forums-26acd8a5e43f6fc697728f04f4966b26bbd05230.tar.gz forums-26acd8a5e43f6fc697728f04f4966b26bbd05230.tar.bz2 forums-26acd8a5e43f6fc697728f04f4966b26bbd05230.tar.xz forums-26acd8a5e43f6fc697728f04f4966b26bbd05230.zip |
[ticket/11515] Extra check after acquiring locks.
Add additional check to flock.php and db.php to ensure lock aquiring.
PHPBB3-11515
Diffstat (limited to 'phpBB/phpbb/config')
-rw-r--r-- | phpBB/phpbb/config/config.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/phpBB/phpbb/config/config.php b/phpBB/phpbb/config/config.php index aaad333006..036ae32cef 100644 --- a/phpBB/phpbb/config/config.php +++ b/phpBB/phpbb/config/config.php @@ -148,6 +148,27 @@ class config implements \ArrayAccess, \IteratorAggregate, \Countable } /** + * Checks configuration option's value only if the new_value matches the + * current configuration value and the configuration value does exist.Called + *only after set_atomic has been called. + * + * @param string $key The configuration option's name + * @param string $old_value Current configuration value + * @param string $new_value New configuration value + * @throws \phpbb\exception\http_exception when configuration value is set and not equal to *new_value. + * @return bool True if the value was changed, false otherwise. + */ + public function ensure_lock($key, $new_value) + { + if(isset($this->config[$key]) && $this->config[$key] == $new_value) + { + return true; + } else { + throw new \phpbb\exception\http_exception(500, 'Failure while aqcuiring locks.'); + } + } + + /** * Increments an integer configuration value. * * @param string $key The configuration option's name |