This commit is contained in:
@@ -709,9 +709,9 @@ namespace VEPROMS.CSLA.Library
|
||||
{
|
||||
string s = _Xp["PrintSettings", "AlwaysOverwritePDF"];
|
||||
|
||||
// If there is no value, then default to false
|
||||
// If there is no value, then default to true
|
||||
if (s == string.Empty)
|
||||
s = "false"; // default
|
||||
s = "true"; // default
|
||||
|
||||
return bool.Parse(s);
|
||||
}
|
||||
@@ -737,9 +737,9 @@ namespace VEPROMS.CSLA.Library
|
||||
{
|
||||
string s = _Xp["PrintSettings", "AlwaysViewPDFAfterCreate"];
|
||||
|
||||
// If there is no value, then default to false
|
||||
// If there is no value, then default to true
|
||||
if (s == string.Empty)
|
||||
s = "false"; // default
|
||||
s = "true"; // default
|
||||
|
||||
return bool.Parse(s);
|
||||
}
|
||||
|
Reference in New Issue
Block a user