We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0849940 commit bd565b3Copy full SHA for bd565b3
app/back-end/builddata.json
@@ -1,4 +1,4 @@
1
{
2
"version": "0.46.4",
3
- "build": 17044
+ "build": 17047
4
}
app/back-end/modules/render-html/renderer-cache.js
@@ -600,13 +600,16 @@ class RendererCache {
600
* Set internal links for tags and authors
601
*/
602
setInternalLinks (posts, pages) {
603
+ pages.map(page => {
604
+ page.setHierarchyLinks();
605
+ });
606
+
607
posts.map(post => {
608
post.setInternalLinks();
609
});
610
611
pages.map(page => {
612
page.setInternalLinks();
- page.setHierarchyLinks();
613
614
615
let authorIDs = Object.keys(this.renderer.cachedItems.authors);
0 commit comments