This commit is contained in:
Stephan
2017-09-23 10:08:18 +02:00
parent c1e2625de0
commit 5ba2ffcbf3
224 changed files with 709 additions and 709 deletions

View File

@@ -107,4 +107,4 @@ namespace Umbraco.Core.Configuration
return success;
}
}
}
}

View File

@@ -62,6 +62,6 @@ namespace Umbraco.Core.Configuration
}
return _params;
}
}
}
}
}

View File

@@ -6,7 +6,7 @@ using System.Text;
namespace Umbraco.Core.Configuration
{
public class FileSystemProvidersSection : ConfigurationSection, IFileSystemProvidersSection
public class FileSystemProvidersSection : ConfigurationSection, IFileSystemProvidersSection
{
[ConfigurationProperty("", IsDefaultCollection = true, IsRequired = true)]
@@ -15,16 +15,16 @@ namespace Umbraco.Core.Configuration
get { return ((FileSystemProviderElementCollection)(base[""])); }
}
private IDictionary<string, IFileSystemProviderElement> _providers;
private IDictionary<string, IFileSystemProviderElement> _providers;
IDictionary<string, IFileSystemProviderElement> IFileSystemProvidersSection.Providers
{
get
{
if (_providers != null) return _providers;
if (_providers != null) return _providers;
_providers = Providers.ToDictionary(x => x.Alias, x => x);
return _providers;
}
}
}
}
}

View File

@@ -8,4 +8,4 @@ namespace Umbraco.Core.Configuration
string Type { get; }
IDictionary<string, string> Parameters { get; }
}
}
}

View File

@@ -6,4 +6,4 @@ namespace Umbraco.Core.Configuration
{
IDictionary<string, IFileSystemProviderElement> Providers { get; }
}
}
}

View File

@@ -5,7 +5,7 @@
bool KeepUserLoggedIn { get; }
bool HideDisabledUsersInBackoffice { get; }
/// <summary>
/// Used to enable/disable the forgot password functionality on the back office login screen
/// </summary>
@@ -13,7 +13,7 @@
string AuthCookieName { get; }
string AuthCookieDomain { get; }
string AuthCookieDomain { get; }
/// <summary>
/// A boolean indicating that by default the email address will be the username
@@ -21,7 +21,7 @@
/// <remarks>
/// Even if this is true and the username is different from the email in the database, the username field will still be shown.
/// When this is false, the username and email fields will be shown in the user section.
/// </remarks>
/// </remarks>
bool UsernameIsEmail { get; }
}
}
}