We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7481b5 commit cf9f11fCopy full SHA for cf9f11f
src/Umbraco.Web/umbraco.presentation/umbraco/Search/QuickSearchHandler.ashx.cs
@@ -59,7 +59,7 @@ public void ProcessRequest(HttpContext context)
59
}
60
else
61
{
62
- var operation = criteria.Field("__nodeName", txt);
+ var operation = criteria.GroupedAnd(new[] { "__nodeName" }, txt.Split(' '));
63
64
// ensure the user can only find nodes they are allowed to see
65
if (UmbracoContext.Current.UmbracoUser.StartNodeId > 0)
0 commit comments