Don't analyze username in index

This commit is contained in:
Sebastien Ros
2014-09-16 10:58:50 -07:00
parent 85159d8728
commit d89e36d78d

View File

@@ -60,7 +60,7 @@ namespace Orchard.Core.Common.Handlers {
}
if (commonPart.Owner != null) {
context.DocumentIndex.Add("author", commonPart.Owner.UserName).Analyze().Store();
context.DocumentIndex.Add("author", commonPart.Owner.UserName).Store();
}
});
}