From 31b5df8b73cd4a6f7915acf0c350fd6aaa759b21 Mon Sep 17 00:00:00 2001 From: psychon Date: Fri, 19 Jun 2009 15:34:59 +0000 Subject: [PATCH] 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 --- Template.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Template.cpp b/Template.cpp index 3a606876..e3eecde8 100644 --- a/Template.cpp +++ b/Template.cpp @@ -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 ""; }