This commit is contained in:
Kathy Ruffing 2011-03-17 09:32:03 +00:00
parent 26ccbebb41
commit ee299001f2

View File

@ -665,7 +665,7 @@ namespace VEPROMS.CSLA.Library
StringBuilder retstr = new StringBuilder(); StringBuilder retstr = new StringBuilder();
retstr.Append(TranGetSectionNumber(tb._ToItem)); retstr.Append(TranGetSectionNumber(tb._ToItem));
string txt = TranGetSectionTitle(tb,tb._ToItem); string txt = TranGetSectionTitle(tb,tb._ToItem);
if (retstr.Length > 0 && txt.Length > 0) retstr.Append(", "); if (retstr.Length > 0 && (txt!=null && txt.Length > 0)) retstr.Append(", ");
retstr.Append(txt); retstr.Append(txt);
tb.AppendPrefix(); tb.AppendPrefix();
tb.ReplaceToken(retstr.ToString()); tb.ReplaceToken(retstr.ToString());