We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63d31e7 commit 238851dCopy full SHA for 238851d
app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php
@@ -627,7 +627,7 @@ public function getBackendTable()
627
if ($this->isStatic()) {
628
$this->_dataTable = $this->getEntityType()->getValueTablePrefix();
629
} else {
630
- $backendTable = trim($this->_getData('backend_table'));
+ $backendTable = trim((string)$this->_getData('backend_table'));
631
if (empty($backendTable)) {
632
$entityTable = [$this->getEntity()->getEntityTablePrefix(), $this->getBackendType()];
633
$backendTable = $this->getResource()->getTable($entityTable);
0 commit comments