Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7d72050

Browse files
authored
Pass path delimiter up to parent
1 parent d39b31e commit 7d72050

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Sylius/Component/Taxonomy/Model/Taxon.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ public function getFullname(string $pathDelimiter = ' / '): ?string
182182

183183
return sprintf(
184184
'%s%s%s',
185-
$this->getParent()->getFullname(),
185+
$this->getParent()->getFullname($pathDelimiter),
186186
$pathDelimiter,
187187
$this->getName()
188188
);

0 commit comments

Comments
 (0)