Added the topics_search phrase.

This commit is contained in:
Azareal 2019-02-23 17:47:42 +10:00
parent 8acc5e7991
commit 7f6c1bada2
2 changed files with 2 additions and 0 deletions

View File

@ -121,6 +121,7 @@
"overview":"Overview",
"page":"Page",
"topics":"All Topics",
"topics_search":"Search Results",
"forums":"Forum List",
"create_topic":"Create Topic",
"login":"Login",

View File

@ -162,6 +162,7 @@ func TopicListCommon(w http.ResponseWriter, r *http.Request, user common.User, h
return nil
}
header.Title = phrases.GetTitlePhrase("topics_search")
pi := common.TopicListPage{header, topicList, forumList, common.Config.DefaultForum, common.TopicListSort{torder, false}, paginator}
return renderTemplate("topics", w, r, header, pi)
}