summaryrefslogtreecommitdiff
path: root/app/CommonMark/XrefParser.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/CommonMark/XrefParser.php')
-rw-r--r--app/CommonMark/XrefParser.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/CommonMark/XrefParser.php b/app/CommonMark/XrefParser.php
index 52b6aeaae8..e0c22ecc15 100644
--- a/app/CommonMark/XrefParser.php
+++ b/app/CommonMark/XrefParser.php
@@ -86,7 +86,7 @@ class XrefParser extends AbstractInlineParser
$url = $record->url();
$label = $handle;
- $title = strip_tags($record->getFullName());
+ $title = strip_tags($record->fullName());
$context->getContainer()->appendChild(new Link($url, $label, $title));
return true;