diff --git a/src/Umbraco.Web.UI.Client/src/installer/steps/permissionsreport.html b/src/Umbraco.Web.UI.Client/src/installer/steps/permissionsreport.html
index c9fe9885ea..3ced6ed678 100644
--- a/src/Umbraco.Web.UI.Client/src/installer/steps/permissionsreport.html
+++ b/src/Umbraco.Web.UI.Client/src/installer/steps/permissionsreport.html
@@ -9,7 +9,7 @@
The following report list the permissions that are currently failing. Once the permissions are fixed press the 'Go back' button to restart the installation.
Major version upgrade from {{installer.current.model.currentVersion}} to {{installer.current.model.newVersion}}
+
There were {{installer.current.model.errors.length}} issues detected
+
+ The following compatibility issues were found. If you continue all non-compatible property editors will be converted to a Readonly/Label.
+ You will be able to change the property editor to a compatible type manually by editing the data type after installation.
+
+
+ Otherwise if you choose not to proceed you will need to fix the errors listed below.
+ Refer to v{{installer.current.model.newVersion}} upgrade instructions for full details.
+
+
+
+
+ {{item}}
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Umbraco.Web.UI.Client/src/less/installer.less b/src/Umbraco.Web.UI.Client/src/less/installer.less
index 604a97fd68..1a78c21d70 100644
--- a/src/Umbraco.Web.UI.Client/src/less/installer.less
+++ b/src/Umbraco.Web.UI.Client/src/less/installer.less
@@ -231,11 +231,15 @@ height: 5px;
display:block;
padding:0;
}
-
.permissions-report > li {
list-style:none;
}
-
.permissions-report h4 {
margin:7px;
+}
+
+.upgrade-report {
+ overflow:auto;
+ height:280px;
+ display:block;
}
\ No newline at end of file
diff --git a/src/Umbraco.Web/Install/InstallSteps/FilePermissionsStep.cs b/src/Umbraco.Web/Install/InstallSteps/FilePermissionsStep.cs
index 0c6e4b5ada..f085979459 100644
--- a/src/Umbraco.Web/Install/InstallSteps/FilePermissionsStep.cs
+++ b/src/Umbraco.Web/Install/InstallSteps/FilePermissionsStep.cs
@@ -9,8 +9,7 @@ using Umbraco.Web.Install.Models;
namespace Umbraco.Web.Install.InstallSteps
{
[InstallSetupStep(InstallationType.NewInstall | InstallationType.Upgrade,
- "Permissions", 0, "Ensuring your file permissions are set correctly",
- PerformsAppRestart = true)]
+ "Permissions", 0, "Ensuring your file permissions are set correctly")]
internal class FilePermissionsStep : InstallSetupStep