Development #315

Merged
djankowski merged 7 commits from Development into master 2024-05-09 14:01:48 -04:00
11 changed files with 19 additions and 23 deletions
Showing only changes of commit a41a398e7e - Show all commits

View File

@@ -1229,7 +1229,8 @@ namespace VEPROMS.CSLA.Library
default:
//F2024-048 use a hard space (\\u160;) instead of a space in the page number text
// to keep that text together on the page
tb.Append(string.Format(" (Page{0}{1})", "\\u160;", tb._ToItem.PageNumber + 1));
//B2024-026: hard space unicode ends with '?' not ';'
tb.Append(string.Format(" (Page{0}{1})", "\\u160?", tb._ToItem.PageNumber + 1));
break;
}
}