[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Property tsvn:mergelogtemplatemsgtitlebottom not working (bug)

From: <jk_at_tut.by>
Date: Thu, 13 Oct 2016 17:33:15 +0300

There is nothing changed when I changed merge log templates and set checkbox "Insert title at the bottom..."
I think this error is cames from here https://sourceforge.net/p/tortoisesvn/code/HEAD/tree/trunk/src/TortoiseProc/ProjectProperties.cpp#l229

BOOL ProjectProperties::ReadProps(CTSVNPath path)
{
....
        if (sPropName.compare(PROJECTPROPNAME_MERGELOGTEMPLATETITLEBOTTOM) == 0)
        {
            CString val;
            val = sPropVal;
            val = val.Trim(L" \n\r\t");
            if ((val.CompareNoCase(L"true") == 0) || (val.CompareNoCase(L"yes") == 0))
                bFileListInEnglish = TRUE;
            else
                bFileListInEnglish = FALSE;
        }
....
}

as you can see here used bFileListInEnglish variable instead of bMergeLogTemplateMsgTitleBottom

please fix this.

------------------------------------------------------
http://tortoisesvn.tigris.org/ds/viewMessage.do?dsForumId=4061&dsMessageId=3189732

To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_tortoisesvn.tigris.org].
Received on 2016-10-13 17:02:10 CEST

This is an archived mail posted to the TortoiseSVN Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.