You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 11, 2022. It is now read-only.
AbstractInstallSchema.php: line 72 $cmsTableName = $this->getSetupConnection()->getTableName('cms_page');
returns wrong table name if there are used tables with prefixes.
Can be changed to $cmsTableName = $this->setup->getTable('cms_page');
but not sure if it is perfect solution
The text was updated successfully, but these errors were encountered:
AbstractInstallSchema.php: line 72
$cmsTableName = $this->getSetupConnection()->getTableName('cms_page');
returns wrong table name if there are used tables with prefixes.
Can be changed to
$cmsTableName = $this->setup->getTable('cms_page');
but not sure if it is perfect solution
The text was updated successfully, but these errors were encountered: