U4-5559 Fix Typo "Build-In" (Code)
This commit is contained in:
@@ -243,7 +243,7 @@
|
||||
@trySkipIisCustomErrors
|
||||
Tries to skip IIS custom errors.
|
||||
Starting with IIS 7.5, this must be set to true for Umbraco 404 pages to show. Else, IIS will take
|
||||
over and render its build-in error page. See MS doc for HttpResponseBase.TrySkipIisCustomErrors.
|
||||
over and render its built-in error page. See MS doc for HttpResponseBase.TrySkipIisCustomErrors.
|
||||
The default value is false, for backward compatibility reasons, which means that IIS _will_ take
|
||||
over, and _prevent_ Umbraco 404 pages to show.
|
||||
@internalRedirectPreservesTemplate
|
||||
|
||||
@@ -130,7 +130,7 @@
|
||||
@trySkipIisCustomErrors
|
||||
Tries to skip IIS custom errors.
|
||||
Starting with IIS 7.5, this must be set to true for Umbraco 404 pages to show. Else, IIS will take
|
||||
over and render its build-in error page. See MS doc for HttpResponseBase.TrySkipIisCustomErrors.
|
||||
over and render its built-in error page. See MS doc for HttpResponseBase.TrySkipIisCustomErrors.
|
||||
The default value is false, for backward compatibility reasons, which means that IIS _will_ take
|
||||
over, and _prevent_ Umbraco 404 pages to show.
|
||||
@internalRedirectPreservesTemplate
|
||||
|
||||
@@ -259,7 +259,7 @@
|
||||
@trySkipIisCustomErrors
|
||||
Tries to skip IIS custom errors.
|
||||
Starting with IIS 7.5, this must be set to true for Umbraco 404 pages to show. Else, IIS will take
|
||||
over and render its build-in error page. See MS doc for HttpResponseBase.TrySkipIisCustomErrors.
|
||||
over and render its built-in error page. See MS doc for HttpResponseBase.TrySkipIisCustomErrors.
|
||||
The default value is false, for backward compatibility reasons, which means that IIS _will_ take
|
||||
over, and _prevent_ Umbraco 404 pages to show.
|
||||
@internalRedirectPreservesTemplate
|
||||
|
||||
@@ -70,7 +70,7 @@ namespace umbraco.cms.presentation.Trees
|
||||
var foundTree = this.Find(
|
||||
delegate(TreeDefinition t)
|
||||
{
|
||||
// zb-00002 #29929 : use IsAssignableFrom instead of Equal, otherwise you can't override build-in
|
||||
// zb-00002 #29929 : use IsAssignableFrom instead of Equal, otherwise you can't override built-in
|
||||
// trees because for ex. PermissionEditor.aspx.cs OnInit calls FindTree<loadContent>()
|
||||
return typeof(T).IsAssignableFrom(t.TreeType);
|
||||
}
|
||||
|
||||
@@ -21,7 +21,7 @@ namespace umbraco
|
||||
|
||||
public override bool PerformDelete()
|
||||
{
|
||||
// only build-in roles can be deleted
|
||||
// only built-in roles can be deleted
|
||||
if (Member.IsUsingUmbracoRoles())
|
||||
{
|
||||
MemberGroup.GetByName(Alias).delete();
|
||||
|
||||
@@ -451,7 +451,7 @@ namespace umbraco
|
||||
|
||||
/// <summary>
|
||||
/// Gets all repositories registered, and returns them as XmlNodes, containing name, alias and webservice url.
|
||||
/// These repositories are used by the build-in package installer and uninstaller to install new packages and check for updates.
|
||||
/// These repositories are used by the built-in package installer and uninstaller to install new packages and check for updates.
|
||||
/// All repositories should have a unique alias.
|
||||
/// All packages installed from a repository gets the repository alias included in the install information
|
||||
/// </summary>
|
||||
|
||||
@@ -37,7 +37,7 @@ namespace umbraco.cms.businesslogic.datatype
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The default editor for editing the build-in pre values in umbraco
|
||||
/// The default editor for editing the built-in pre values in umbraco
|
||||
/// </summary>
|
||||
/// <param name="DataType">The DataType to be parsed</param>
|
||||
/// <param name="DisplayTextBox">Whether to use the default text box</param>
|
||||
|
||||
@@ -29,7 +29,7 @@ namespace umbraco.editorControls
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The default editor for editing the build-in pre values in umbraco
|
||||
/// The default editor for editing the built-in pre values in umbraco
|
||||
/// </summary>
|
||||
/// <param name="DataType">The DataType to be parsed</param>
|
||||
/// <param name="DisplayTextBox">Whether to use the default text box</param>
|
||||
|
||||
Reference in New Issue
Block a user