This commit is contained in:
2010-08-12 16:05:52 +00:00
parent f91459b9f0
commit 0849b002b4
18 changed files with 231 additions and 212 deletions

View File

@@ -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);
}