Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.2.1
-
Fix Version/s: 1.2.2
-
Component/s: None
-
Labels:None
-
Environment:symfony 1.4.2
Description
class PlgSlide extends BasePlgSlide
{
public function setTableDefinition()
...
doesn't work, domain_id field is not added as part of identifier for PlgSlide table records
class PlgSlide extends BasePlgSlide
{
public function setTableDefinition()
do work as expected.
I've made some investigation and found code fragment at Table.php, in function setColumn, line 1373:
if (isset($options['primary']) && $options['primary']) {
...
$this->_identifier = (array) $this->_identifier;
but no such functionality for setColumnOption function, Table.php, line 1235