diff --git a/src/Umbraco.Web/umbraco.presentation/umbraco/Search/QuickSearchHandler.ashx.cs b/src/Umbraco.Web/umbraco.presentation/umbraco/Search/QuickSearchHandler.ashx.cs index cd63e2de0a..4cb18be507 100644 --- a/src/Umbraco.Web/umbraco.presentation/umbraco/Search/QuickSearchHandler.ashx.cs +++ b/src/Umbraco.Web/umbraco.presentation/umbraco/Search/QuickSearchHandler.ashx.cs @@ -59,7 +59,7 @@ namespace umbraco.presentation.umbraco.Search } else { - var operation = criteria.Field("__nodeName", txt); + var operation = criteria.GroupedAnd(new[] { "__nodeName" }, txt.Split(' ')); // ensure the user can only find nodes they are allowed to see if (UmbracoContext.Current.UmbracoUser.StartNodeId > 0)