|
@@ -60,7 +60,7 @@ module.exports = {
|
|
|
if (WIKI.config.lang.namespacing) {
|
|
|
// -> Reformat paths
|
|
|
if (href.indexOf('/') !== 0) {
|
|
|
- href = `/${this.page.localeCode}/${this.page.path}/${href}`
|
|
|
+ href = (this.page.path === 'home') ? `/${this.page.localeCode}/${href}` : `/${this.page.localeCode}/${this.page.path}/${href}`
|
|
|
} else if (href.charAt(3) !== '/') {
|
|
|
href = `/${this.page.localeCode}${href}`
|
|
|
}
|
|
@@ -74,7 +74,7 @@ module.exports = {
|
|
|
} else {
|
|
|
// -> Reformat paths
|
|
|
if (href.indexOf('/') !== 0) {
|
|
|
- href = `/${this.page.path}/${href}`
|
|
|
+ href = (this.page.path === 'home') ? `/${href}` : `/${this.page.path}/${href}`
|
|
|
}
|
|
|
|
|
|
try {
|