Skip to content

Commit 13891bb

Browse files
author
perploug
committed
Merge branch '7.1.1' of https://github.com/umbraco/Umbraco-CMS into 7.1.1
2 parents a2efd7a + 3c204da commit 13891bb

File tree

6 files changed

+15
-14
lines changed

6 files changed

+15
-14
lines changed

build/Build.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@ECHO OFF
2-
SET release=7.1.0
2+
SET release=7.1.1
33
SET comment=
44
SET version=%release%
55

build/NuSpecs/build/UmbracoCms.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
4-
<UmbracoVersion>7.1.0</UmbracoVersion>
4+
<UmbracoVersion>7.1.1</UmbracoVersion>
55
</PropertyGroup>
66
<Target Name="CopyUmbracoFilesToWebRoot" BeforeTargets="AfterBuild">
77
<PropertyGroup>

src/Umbraco.Core/Configuration/UmbracoVersion.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ namespace Umbraco.Core.Configuration
55
{
66
public class UmbracoVersion
77
{
8-
private static readonly Version Version = new Version("7.1.0");
8+
private static readonly Version Version = new Version("7.1.1");
99

1010
/// <summary>
1111
/// Gets the current version of Umbraco.

src/Umbraco.Web.UI.Client/src/installer/steps/database.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ <h1>Configure your database</h1>
9393
<label class="checkbox" for="integratedAuth">
9494
<input type="checkbox" name="integratedAuth"
9595
placeholder="umbraco-cms"
96-
ng-model="installer.current.model.integratedAuth" /> Use intergrated authentication</label>
96+
ng-model="installer.current.model.integratedAuth" /> Use integrated authentication</label>
9797
</div>
9898
</div>
9999
</div>

src/Umbraco.Web.UI/Umbraco.Web.UI.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2533,9 +2533,9 @@ xcopy "$(ProjectDir)"..\packages\SqlServerCE.4.0.0.0\x86\*.* "$(TargetDir)x86\"
25332533
<WebProjectProperties>
25342534
<UseIIS>True</UseIIS>
25352535
<AutoAssignPort>True</AutoAssignPort>
2536-
<DevelopmentServerPort>7100</DevelopmentServerPort>
2536+
<DevelopmentServerPort>7110</DevelopmentServerPort>
25372537
<DevelopmentServerVPath>/</DevelopmentServerVPath>
2538-
<IISUrl>http://localhost:7100</IISUrl>
2538+
<IISUrl>http://localhost:7110</IISUrl>
25392539
<NTLMAuthentication>False</NTLMAuthentication>
25402540
<UseCustomServer>False</UseCustomServer>
25412541
<CustomServerUrl>

src/Umbraco.Web/umbraco.presentation/umbraco/dialogs/protectPage.aspx.cs

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System;
22
using System.Globalization;
3+
using System.Linq;
34
using System.Web.Security;
45
using System.Web.UI;
56
using System.Web.UI.WebControls;
@@ -32,10 +33,10 @@ public protectPage()
3233
protected ContentPicker errorPagePicker = new ContentPicker();
3334

3435
override protected void OnInit(EventArgs e)
35-
{
36+
{
3637
base.OnInit(e);
3738
}
38-
39+
3940
protected void selectMode(object sender, EventArgs e)
4041
{
4142
p_mode.Visible = false;
@@ -111,7 +112,7 @@ protected void Page_Load(object sender, EventArgs e)
111112
SimpleLoginLabel.Visible = true;
112113
SimpleLoginLabel.Text = m.UserName;
113114
pane_advanced.Visible = false;
114-
bt_protect.CommandName = "simple";
115+
bt_protect.CommandName = "simple";
115116
}
116117

117118
}
@@ -131,9 +132,9 @@ protected void Page_Load(object sender, EventArgs e)
131132
_memberGroups.ID = "Membergroups";
132133
_memberGroups.Width = 175;
133134
var selectedGroups = "";
134-
var roles = Roles.GetAllRoles();
135+
var roles = Roles.GetAllRoles().OrderBy(x => x);
135136

136-
if (roles.Length > 0)
137+
if (roles.Any())
137138
{
138139
foreach (string role in roles)
139140
{
@@ -185,7 +186,7 @@ protected void protect_Click(object sender, CommandEventArgs e)
185186
if (Page.IsValid)
186187
{
187188
int pageId = int.Parse(helper.Request("nodeId"));
188-
189+
189190
if (e.CommandName == "simple")
190191
{
191192
var memberLogin = simpleLogin.Visible ? simpleLogin.Text : SimpleLoginLabel.Text;
@@ -222,7 +223,7 @@ protected void protect_Click(object sender, CommandEventArgs e)
222223
}
223224
else if (pp_pass.Visible)
224225
{
225-
SimpleLoginNameValidator.IsValid = false;
226+
SimpleLoginNameValidator.IsValid = false;
226227
SimpleLoginLabel.Visible = true;
227228
SimpleLoginLabel.Text = memberLogin;
228229
simpleLogin.Visible = false;
@@ -567,6 +568,6 @@ protected void buttonRemoveProtection_Click(object sender, System.EventArgs e)
567568
/// </remarks>
568569
protected global::System.Web.UI.WebControls.PlaceHolder js;
569570

570-
571+
571572
}
572573
}

0 commit comments

Comments
 (0)