Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
e90e62c9
Commit
e90e62c9
authored
May 07, 2007
by
romanb
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Small fix: createRoot() only generates a root id if it doesnt already have a valid value
parent
a1ee3f97
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
NestedSet.php
lib/Doctrine/Tree/NestedSet.php
+2
-2
No files found.
lib/Doctrine/Tree/NestedSet.php
View file @
e90e62c9
...
...
@@ -73,8 +73,8 @@ class Doctrine_Tree_NestedSet extends Doctrine_Tree implements Doctrine_Tree_Int
$record
=
$this
->
table
->
create
();
}
// if tree is many roots, then get next root id
if
(
$root
=
$this
->
getAttribute
(
'hasManyRoots'
)
)
{
// if tree is many roots,
and no root id has been set,
then get next root id
if
(
$root
=
$this
->
getAttribute
(
'hasManyRoots'
)
&&
$record
->
getNode
()
->
getRootValue
()
<=
0
)
{
$record
->
getNode
()
->
setRootValue
(
$this
->
getNextRootId
());
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment