diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-25 13:28:03 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-25 13:28:03 -0800 |
commit | a4c0f6402dd3804157ee1149998812134fb4837c (patch) | |
tree | d1ddd84ba3761ffaae481f20a922bb1ccbad3500 /src | |
parent | 992e478cb2f8b79b1acc8d26e9ee3ade3132fdfb (diff) | |
download | DotNetOpenAuth-a4c0f6402dd3804157ee1149998812134fb4837c.zip DotNetOpenAuth-a4c0f6402dd3804157ee1149998812134fb4837c.tar.gz DotNetOpenAuth-a4c0f6402dd3804157ee1149998812134fb4837c.tar.bz2 |
Reporting is now off by default.
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth/Configuration/ReportingElement.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth/Configuration/ReportingElement.cs b/src/DotNetOpenAuth/Configuration/ReportingElement.cs index 85eee55..b771698 100644 --- a/src/DotNetOpenAuth/Configuration/ReportingElement.cs +++ b/src/DotNetOpenAuth/Configuration/ReportingElement.cs @@ -30,7 +30,7 @@ namespace DotNetOpenAuth.Configuration { /// Gets or sets a value indicating whether this reporting is enabled. /// </summary> /// <value><c>true</c> if enabled; otherwise, <c>false</c>.</value> - [ConfigurationProperty(EnabledAttributeName, DefaultValue = true)] + [ConfigurationProperty(EnabledAttributeName, DefaultValue = false)] internal bool Enabled { get { return (bool)this[EnabledAttributeName]; } set { this[EnabledAttributeName] = value; } |