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 829daf0 commit 4ed0391Copy full SHA for 4ed0391
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