B2012-365 Fixed the default get of the Auto Indent option to return No if it is not set in the config

B2012-365  Fixed, the Auto Indent option enabling
B2012-369 Fixed the lack of displaying a new subsection, after entering a new High level step
This commit is contained in:
2012-12-11 19:41:51 +00:00
parent 74e11c4025
commit d42972a389
3 changed files with 16 additions and 4 deletions

View File

@@ -740,7 +740,7 @@ namespace VEPROMS.CSLA.Library
{
// if null - return a "Y"
string tmp = _Xp["SubSection", "AutoIndent"];
return tmp==null||tmp==""?"Y":tmp;
return tmp==null||tmp==""?"N":tmp;
}
set
{