Skip to content

Commit

Permalink
Don't make query if not needed
Browse files Browse the repository at this point in the history
  • Loading branch information
lekoala authored Jun 22, 2023
1 parent 7a17383 commit 5cce496
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions code/Model/SiteTreeLinkTracking.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,15 +116,21 @@ public function augmentSyncLinkTracking()
$allFields = DataObject::getSchema()->fieldSpecs($this->owner);
$linkedPages = [];
$anyBroken = false;
$hasTrackedFields = false;
foreach ($allFields as $field => $fieldSpec) {
$fieldObj = $this->owner->dbObject($field);
if ($fieldObj instanceof DBHTMLText) {
$hasTrackedFields = true;
// Merge links in this field with global list.
$linksInField = $this->trackLinksInField($field, $anyBroken);
$linkedPages = array_merge($linkedPages, $linksInField);
}
}

if (!$hasTrackedFields) {
return;
}

// Soft support for HasBrokenLink db field (e.g. SiteTree)
if ($this->owner->hasField('HasBrokenLink')) {
$this->owner->HasBrokenLink = $anyBroken;
Expand Down

0 comments on commit 5cce496

Please sign in to comment.