diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2022-03-07 00:22:07 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2022-03-07 00:22:07 -0400 |
commit | e51ebf2eb4291c46a0a0c20c22003bb2f12660b7 (patch) | |
tree | ae6e29b67001ff61a3ff99ff73dafb9f895989a7 | |
parent | 7b219c57827f78b5b7783bd1ab4a1d9df78f740f (diff) |
fix footer content not being displayed
-rwxr-xr-x | src/upd8.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/upd8.js b/src/upd8.js index 5cccf097..0f5e287f 100755 --- a/src/upd8.js +++ b/src/upd8.js @@ -1599,7 +1599,7 @@ writePage.html = (pageFn, { nav.links ??= []; footer.classes ??= []; - footer.content ??= (wikiInfo.footer ? transformMultiline(wikiInfo.footer) : ''); + footer.content ??= (wikiInfo.footerContent ? transformMultiline(wikiInfo.footerContent) : ''); footer.content += '\n' + getFooterLocalizationLinks(paths.pathname, { languages, paths, strings, to |