Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Invalid
-
Affects Version/s: 1.2.0-BETA3
-
Fix Version/s: 1.2.0
-
Component/s: None
-
Labels:None
-
Environment:Linux, Oracle 10g
Description
Option "levelColumnName" is used to set the name of the level column but the option is ignored
The following code needs to be added in __construct() of Doctrine_Tree_NestedSet
$options['levelColumnName'] = isset($options['levelColumnName']) ? $options['levelColumnName'] : false;
This is invalid. The code is not needed and it works fine without it.