jerrong / Sitecore-Item-Buckets

Manage Large Repositories of Content in Sitecore
18 stars 19 forks source link

After reload BucketList displays Name instead of DisplayName #9

Open akamburov opened 11 years ago

akamburov commented 11 years ago

After reload BucketList displays Name instead of DisplayName. The problem seems to come from the Search service.

In Website/sitecore modules/Shell/Sitecore/ItemBuckets/Services/Search.ashx.cs:105 sitecoreItem.Name = innerItem.Name;

should be:

sitecoreItem.Name = innerItem.DisplayName;

Fork with fix applied: https://github.com/akamburov/Sitecore-Item-Buckets/commit/181a56197cd1f9b2c23968aafb9683b095aa8eec

seankearney commented 11 years ago

FYI, this is addressed with Pull request #10

akamburov commented 11 years ago

Pull request https://github.com/jerrong/Sitecore-Item-Buckets/pull/11 also addresses this issue.