diff --git a/src/Extensions/ExternalURLLink.php b/src/Extensions/ExternalURLLink.php index cb4df3b..aadf2cb 100644 --- a/src/Extensions/ExternalURLLink.php +++ b/src/Extensions/ExternalURLLink.php @@ -41,4 +41,14 @@ public function updateValidate(ValidationResult &$result) $result->addFieldError('URL', 'External URLs must be complete including http:// or https://'); } } + + public function updateLink(&$link) + { + $link = $this->getOwner()->URL; + } + + public function updateAbsoluteLink(&$link) + { + $link = $this->getOwner()->URL; + } }