Fix navigation bug due to missing trailing slash in URLs causing RSS links to point to the main one even in tagged page
This commit is contained in:
parent
e136b97746
commit
e180fef293
1 changed files with 1 additions and 2 deletions
|
@ -70,8 +70,7 @@ function DomRenderer(modules) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function otherUrl(tag, all) {
|
function otherUrl(tag, all) {
|
||||||
var path = [tag, all ? null : 'all.html'];
|
return '/' + (tag || '') + (all ? '/' : '/all.html');
|
||||||
return '/' + path.filter(modules.fun.defined).join('/');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function articlesList(tag, all) {
|
function articlesList(tag, all) {
|
||||||
|
|
Loading…
Reference in a new issue