DbConnection: Do not accept configuration for table prefixes

fixes #9418
This commit is contained in:
Johannes Meyer 2015-06-22 13:32:34 +02:00
parent d36f90d8cb
commit 6d48de6cf5
1 changed files with 0 additions and 3 deletions

View File

@ -71,9 +71,6 @@ class DbConnection implements Selectable, Extensible, Updatable, Reducible
public function __construct(ConfigObject $config = null)
{
$this->config = $config;
if (isset($config->prefix)) {
$this->tablePrefix = $config->prefix;
}
$this->connect();
}