Renamed GetWebNavTitle() to GetWebMenuTitle() to keep in line with the name of the Menu.tmpl file

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1787 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
prozacx
2010-02-23 06:09:21 +00:00
parent dfb9c1fae2
commit 28b010f7b9
5 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -260,7 +260,7 @@ void CWebSock::SetVars() {
}
bool CWebSock::AddModLoop(const CString& sLoopName, CModule& Module) {
CString sTitle(Module.GetWebNavTitle());
CString sTitle(Module.GetWebMenuTitle());
DEBUG("=== === === === === [" + Module.GetModName() + "] [" + CString(IsLoggedIn()) + "]");
@@ -341,7 +341,7 @@ bool CWebSock::PrintTemplate(const CString& sPageName, CString& sPageRet, CModul
m_Template["ModName"] = pModule->GetModName();
if (m_Template.find("Title") == m_Template.end()) {
m_Template["Title"] = pModule->GetWebNavTitle();
m_Template["Title"] = pModule->GetWebMenuTitle();
}
}