From 792450328d74fa5b56a44fe35f6f180cac989056 Mon Sep 17 00:00:00 2001 From: hartvig Date: Tue, 11 Jan 2011 07:20:03 -0100 Subject: [PATCH] Work items: 29846 --- umbraco/presentation/install/steps/database.ascx.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/umbraco/presentation/install/steps/database.ascx.cs b/umbraco/presentation/install/steps/database.ascx.cs index cf1b524d91..cb8c0ca366 100644 --- a/umbraco/presentation/install/steps/database.ascx.cs +++ b/umbraco/presentation/install/steps/database.ascx.cs @@ -61,7 +61,10 @@ namespace umbraco.presentation.install.steps { get { // check if sql ce is present - if (!File.Exists(IOHelper.MapPath(Path.Combine(IOHelper.ResolveUrl(SystemDirectories.Bin), "System.Data.SqlServerCe.dll")))) + if ( + !File.Exists(IOHelper.MapPath(Path.Combine(IOHelper.ResolveUrl(SystemDirectories.Bin), "System.Data.SqlServerCe.dll"))) || + !File.Exists(IOHelper.MapPath(Path.Combine(IOHelper.ResolveUrl(SystemDirectories.Bin), "SQLCE4Umbraco.dll"))) + ) return false; else return true;