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 320adb6 commit efd934cCopy full SHA for efd934c
src/Tree/Strategy/ORM/MaterializedPath.php
@@ -28,7 +28,7 @@ public function removeNode($om, $meta, $config, $node)
28
$qb = $om->createQueryBuilder();
29
$qb->select('e')
30
->from($config['useObjectClass'], 'e')
31
- ->where($qb->expr()->like('e.'.$config['path'], $qb->expr()->literal($path.'%')));
+ ->where($qb->expr()->like('e.'.$config['path'], $qb->expr()->literal($path.$config['path_separator'].'%')));
32
33
if (isset($config['level'])) {
34
$lvlField = $config['level'];
0 commit comments