diff --git a/services_controllers.yml b/services_controllers.yml index 7b8d321237..efad0241af 100644 --- a/services_controllers.yml +++ b/services_controllers.yml @@ -242,8 +242,8 @@ services: response: '@response' dbi: '@dbi' template: '@template' - db: null - table: null + db: '%db%' + table: '%table%' options_array: null cfgRelation: null tbl_storage_engine: null diff --git a/tbl_relation.php b/tbl_relation.php index 851e55b7f7..ec1dbdea19 100644 --- a/tbl_relation.php +++ b/tbl_relation.php @@ -57,8 +57,6 @@ $upd_query = new Table($table, $db, $dbi); /* Define dependencies for the concerned controller */ $dependency_definitions = [ - 'db' => $container->get('db'), - 'table' => $container->get('table'), 'options_array' => $options_array, 'cfgRelation' => $cfgRelation, 'tbl_storage_engine' => $tbl_storage_engine,