summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-12-25 13:28:03 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2009-12-25 13:28:03 -0800
commita4c0f6402dd3804157ee1149998812134fb4837c (patch)
treed1ddd84ba3761ffaae481f20a922bb1ccbad3500 /src
parent992e478cb2f8b79b1acc8d26e9ee3ade3132fdfb (diff)
downloadDotNetOpenAuth-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.cs2
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; }