CTempalte: Fix a minor error in a debug message

Patch by KiNgMaR, thanks


git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1545 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
psychon
2009-06-19 15:34:59 +00:00
parent 7f7341dc2a
commit 31b5df8b73
+1 -1
View File
@@ -43,7 +43,7 @@ CString CTemplateLoopContext::GetValue(const CString& sName, bool bFromIf) {
CTemplate* pTemplate = GetCurRow();
if (!pTemplate) {
DEBUG("Loop [" + GetName() + "] has no row index [" + CString(GetCurRow()) + "]");
DEBUG("Loop [" + GetName() + "] has no row index [" + CString(GetRowIndex()) + "]");
return "";
}