This commit is contained in:
2010-07-23 15:55:59 +00:00
parent 3a49176ee3
commit 66e7690661
2 changed files with 2 additions and 1 deletions

View File

@@ -125,7 +125,7 @@ namespace Volian.Print.Library
set
{
_MySection = value;
MySectionTitle = (_MySection.DisplayNumber == null ? "" : _MySection.DisplayNumber + " - ") + _MySection.DisplayText;
MySectionTitle = ((_MySection.DisplayNumber ?? "")=="" ? "" : _MySection.DisplayNumber + " - ") + _MySection.DisplayText;
MySvg = BuildSvg(_MySection);
}
}