Merge branch 'dev-v7' into 7.4.0

Conflicts:
	build/UmbracoVersion.txt
	src/SolutionInfo.cs
	src/Umbraco.Core/Configuration/UmbracoVersion.cs
	src/Umbraco.Web.UI.Client/bower.json
	src/Umbraco.Web.UI.Client/src/less/main.less
	src/Umbraco.Web.UI.Client/src/views/common/dialogs/mediapicker.html
	src/Umbraco.Web.UI.Client/src/views/common/dialogs/user.html
	src/Umbraco.Web.UI.Client/src/views/propertyeditors/contentpicker/contentpicker.controller.js
	src/Umbraco.Web.UI.Client/src/views/propertyeditors/contentpicker/contentpicker.html
	src/Umbraco.Web.UI.Client/src/views/propertyeditors/listview/listview.html
	src/Umbraco.Web.UI/Umbraco.Web.UI.csproj
	src/Umbraco.Web.UI/config/Dashboard.Release.config
	src/Umbraco.Web/Umbraco.Web.csproj
This commit is contained in:
Sebastiaan Janssen
2015-12-01 15:16:57 +01:00
89 changed files with 1531 additions and 641 deletions

View File

@@ -26,6 +26,7 @@ namespace Umbraco.Web.WebServices
/// This isn't fully implemented yet but we should migrate all of the logic in the umbraco.presentation.webservices.codeEditorSave
/// over to this controller.
/// </remarks>
[ValidateMvcAngularAntiForgeryToken]
public class SaveFileController : UmbracoAuthorizedController
{
/// <summary>
@@ -155,8 +156,8 @@ namespace Umbraco.Web.WebServices
{
t = new Template(templateId)
{
Text = templateName,
Alias = templateAlias,
Text = templateName.CleanForXss(),
Alias = templateAlias.CleanForXss(),
Design = templateContents
};