Skip to content

Commit

Permalink
Fixes resolving links used in static pages
Browse files Browse the repository at this point in the history
  • Loading branch information
octoberapp committed Jan 18, 2023
1 parent e181d8e commit 0ba2505
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
7 changes: 7 additions & 0 deletions classes/Page.php
Expand Up @@ -634,6 +634,13 @@ public function getProcessedMarkup()
$markup = TextParser::parse($markup, $globalVars);
}

/*
* Process content using core parser
*/
if (class_exists(\Cms\Classes\PageLookup::class)) {
$markup = \Cms\Classes\PageLookup::processMarkup($markup);
}

/*
* Event hook
*/
Expand Down
1 change: 1 addition & 0 deletions updates/version.yaml
Expand Up @@ -71,3 +71,4 @@ v1.5.4: Compatibility updates
v1.5.5: Fixes media finder added to menu in October v2
v1.5.6: Fixes concurrency save form in October v3
v1.5.7: Adds page finder support for October v3.2
v1.5.8: Fixes resolving links used in static pages

0 comments on commit 0ba2505

Please sign in to comment.