From 8e26f14eb619c35cabfbf548e0d20926c4dd2d01 Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Wed, 12 Jan 2011 00:16:01 +0100 Subject: [PATCH] [task/config-class] Add an attribute for the table name in phpbb_config_db. PHPBB3-9988 --- phpBB/includes/config/db.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/phpBB/includes/config/db.php b/phpBB/includes/config/db.php index a753d12cd0..74fb0504ce 100644 --- a/phpBB/includes/config/db.php +++ b/phpBB/includes/config/db.php @@ -33,6 +33,12 @@ class phpbb_config_db extends phpbb_config */ protected $db; + /** + * Name of the database table used for configuration. + * @var string + */ + protected $table; + /** * Creates a configuration container with a default set of values *