mirror of
https://github.com/wilr/silverstripe-googlesitemaps.git
synced 2024-10-22 11:05:48 +02:00
Merge pull request #170 from xini/fix-priority-calculations
fix hierarchy based priority calculations
This commit is contained in:
commit
b5f322646f
@ -116,7 +116,7 @@ class GoogleSitemapSiteTreeExtension extends GoogleSitemapExtension
|
||||
|
||||
if (!$priority) {
|
||||
$parentStack = $this->owner->getAncestors();
|
||||
$numParents = is_array($parentStack) ? count($parentStack) - 1 : 0;
|
||||
$numParents = $parentStack->count();
|
||||
|
||||
$num = max(0.1, 1.0 - ($numParents / 10));
|
||||
$result = str_replace(",", ".", $num);
|
||||
|
Loading…
Reference in New Issue
Block a user