diff --git a/module/VuFind/src/VuFind/Session/AbstractBase.php b/module/VuFind/src/VuFind/Session/AbstractBase.php index 6dd2a844ebe47d7be39952417dbebbc58ebdddf7..7c9dbf2d47028ebdc0c114814736241813c01535 100644 --- a/module/VuFind/src/VuFind/Session/AbstractBase.php +++ b/module/VuFind/src/VuFind/Session/AbstractBase.php @@ -204,6 +204,6 @@ abstract class AbstractBase implements SaveHandlerInterface, */ protected function getTable($table) { - return $this->tableManager->get($table); + return $this->getDbTableManager()->get($table); } } \ No newline at end of file diff --git a/module/VuFind/src/VuFind/Statistics/Driver/Db.php b/module/VuFind/src/VuFind/Statistics/Driver/Db.php index 1fc16d3f78cb8177ff1c814227bbba5caf5f17d1..9ca1c5904b9bf8d9909e5a3e3c00d9256e05c0b3 100644 --- a/module/VuFind/src/VuFind/Statistics/Driver/Db.php +++ b/module/VuFind/src/VuFind/Statistics/Driver/Db.php @@ -136,6 +136,6 @@ class Db extends AbstractBase implements \VuFind\Db\Table\DbTableAwareInterface */ protected function getTable($table) { - return $this->tableManager->get($table); + return $this->getDbTableManager()->get($table); } }