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