mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-24 19:02:07 +00:00
stripe off errors and kb from page titles
This commit is contained in:
parent
d294117286
commit
9a3e621c9c
1 changed files with 7 additions and 0 deletions
|
@ -39,6 +39,13 @@ module.exports = WikiController =
|
|||
if pageData.content?.length > 280
|
||||
if _.include(other_lngs, req.lng)
|
||||
pageData.title = pageData.title.slice(0, pageData.title.length - (req.lng.length+1) )
|
||||
|
||||
if pageData.title?.toLowerCase()?.indexOf("kb") == 0
|
||||
pageData.title = pageData.title.slice(3)
|
||||
|
||||
if pageData.title?.toLowerCase()?.indexOf("errors") == 0
|
||||
pageData.title = pageData.title.slice(7)
|
||||
|
||||
WikiController._renderPage(pageData, contents, res)
|
||||
else
|
||||
WikiController._getPageContent page, (error, pageData) ->
|
||||
|
|
Loading…
Reference in a new issue