Merge branch 'v8/8.8' into v8/dev
# Conflicts: # src/SolutionInfo.cs # src/Umbraco.Core/Packaging/PackageDataInstallation.cs
This commit is contained in:
@@ -604,7 +604,8 @@ namespace Umbraco.Core.Packaging
|
||||
var defaultTemplateElement = infoElement.Element("DefaultTemplate");
|
||||
|
||||
contentType.Name = infoElement.Element("Name").Value;
|
||||
contentType.Key = new Guid(infoElement.Element("Key").Value);
|
||||
if (infoElement.Element("Key") != null)
|
||||
contentType.Key = new Guid(infoElement.Element("Key").Value);
|
||||
contentType.Icon = infoElement.Element("Icon").Value;
|
||||
contentType.Thumbnail = infoElement.Element("Thumbnail").Value;
|
||||
contentType.Description = infoElement.Element("Description").Value;
|
||||
@@ -784,7 +785,6 @@ namespace Umbraco.Core.Packaging
|
||||
var propertyType = new PropertyType(dataTypeDefinition, property.Element("Alias").Value)
|
||||
{
|
||||
Name = property.Element("Name").Value,
|
||||
Key = new Guid(property.Element("Key").Value),
|
||||
Description = (string)property.Element("Description"),
|
||||
Mandatory = property.Element("Mandatory") != null
|
||||
? property.Element("Mandatory").Value.ToLowerInvariant().Equals("true")
|
||||
@@ -802,6 +802,8 @@ namespace Umbraco.Core.Packaging
|
||||
? (ContentVariation)Enum.Parse(typeof(ContentVariation), property.Element("Variations").Value)
|
||||
: ContentVariation.Nothing
|
||||
};
|
||||
if (property.Element("Key") != null)
|
||||
propertyType.Key = new Guid(property.Element("Key").Value);
|
||||
|
||||
var tab = (string)property.Element("Tab");
|
||||
if (string.IsNullOrEmpty(tab))
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<div ng-controller="Umbraco.Overlays.ItemPickerOverlay" class="umb-itempicker">
|
||||
<div class="form-search" ng-if="model.filter" style="margin-bottom: 15px;">
|
||||
<div class="form-search" ng-if="model.filter !== false" style="margin-bottom: 15px;">
|
||||
<i class="icon-search" aria-hidden="true"></i>
|
||||
<input type="text"
|
||||
ng-model="searchTerm"
|
||||
|
||||
@@ -349,12 +349,6 @@
|
||||
<DevelopmentServerPort>8900</DevelopmentServerPort>
|
||||
<DevelopmentServerVPath>/</DevelopmentServerVPath>
|
||||
<IISUrl>http://localhost:8900</IISUrl>
|
||||
<DevelopmentServerPort>8710</DevelopmentServerPort>
|
||||
<DevelopmentServerVPath>/</DevelopmentServerVPath>
|
||||
<IISUrl>http://localhost:8710</IISUrl>
|
||||
<DevelopmentServerPort>8660</DevelopmentServerPort>
|
||||
<DevelopmentServerVPath>/</DevelopmentServerVPath>
|
||||
<IISUrl>http://localhost:8660</IISUrl>
|
||||
<NTLMAuthentication>False</NTLMAuthentication>
|
||||
<UseCustomServer>False</UseCustomServer>
|
||||
<CustomServerUrl>
|
||||
|
||||
Reference in New Issue
Block a user