diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-27 07:08:35 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-27 07:08:35 -0800 |
commit | 2f08f35bc6318e657b2161025c54ea213742dbc1 (patch) | |
tree | d189bfc0faee10031105478ba309bf7cc381ad6a /src | |
parent | cf48d319968262e3c7f7322ea17fedcd3819d743 (diff) | |
download | DotNetOpenAuth-2f08f35bc6318e657b2161025c54ea213742dbc1.zip DotNetOpenAuth-2f08f35bc6318e657b2161025c54ea213742dbc1.tar.gz DotNetOpenAuth-2f08f35bc6318e657b2161025c54ea213742dbc1.tar.bz2 |
Versions 3.4 and later default to having reporting enabled.
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 ab1437f..2374448 100644 --- a/src/DotNetOpenAuth/Configuration/ReportingElement.cs +++ b/src/DotNetOpenAuth/Configuration/ReportingElement.cs @@ -69,7 +69,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 = false)] + [ConfigurationProperty(EnabledAttributeName, DefaultValue = true)] internal bool Enabled { get { return (bool)this[EnabledAttributeName]; } set { this[EnabledAttributeName] = value; } |