Skip to content

Commit

Permalink
Fix PR #50 - reset the schema manager
Browse files Browse the repository at this point in the history
  • Loading branch information
zonky2 committed Jan 20, 2023
1 parent a2d9cdd commit 60054ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -12,7 +12,7 @@
{
"name": "Christian Schiffler",
"email": "c.schiffler@cyberspectrum.de",
"homepage": "http://www.cyberspectrum.de",
"homepage": "https://www.cyberspectrum.de",
"role": "Developer"
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/Listener/SubSelectPalettesListener.php
Expand Up @@ -194,7 +194,7 @@ private function getValue($dataContainer, $strTable, $strSelector)

// or break, when unable to handle data container
if ($dataContainer instanceof DC_Table
&& $this->connection->createSchemaManager()->tablesExist([$dataContainer->table])
&& $this->connection->getSchemaManager()->tablesExist([$dataContainer->table])
) {
return $this->fetchValueFromDatabase($dataContainer, $strSelector);
}
Expand Down

0 comments on commit 60054ac

Please sign in to comment.