[ticket/10202] SQL escape the table name.

PHPBB3-10202
This commit is contained in:
Andreas Fischer 2013-03-05 03:43:51 +01:00
parent 95764c4f0e
commit af02681960

View file

@ -43,7 +43,7 @@ class phpbb_config_db_text
public function __construct(phpbb_db_driver $db, $table)
{
$this->db = $db;
$this->table = $table;
$this->table = $this->db->sql_escape($table);
}
/**