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 dee3162 commit c6f37e6Copy full SHA for c6f37e6
kernel/classes/ezcontentobjecttreenode.php
@@ -32,13 +32,18 @@ class eZContentObjectTreeNode extends eZPersistentObject
32
const SORT_ORDER_DESC = 0;
33
const SORT_ORDER_ASC = 1;
34
35
+ public function __construct( $row = array() )
36
+ {
37
+ parent::__construct( $row );
38
+ }
39
+
40
/**
41
* @deprecated Use eZContentObjectTreeNode::__construct() instead
42
* @param int|array $row
43
*/
44
function eZContentObjectTreeNode( $row = array() )
45
{
- parent::__construct( $row );
46
+ self::__construct( $row );
47
}
48
49
0 commit comments