mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-07-15 21:43:27 +08:00

Became clear while editing metadata the names the only lowercase value and stick out pretty badly especially when used as {id} in urls --HG-- branch : dev
12 lines
378 B
C#
12 lines
378 B
C#
using JetBrains.Annotations;
|
|
using Orchard.Comments.Models;
|
|
using Orchard.ContentManagement.Handlers;
|
|
|
|
namespace Orchard.Comments.Handlers {
|
|
[UsedImplicitly]
|
|
public class HasCommentsContainerHandler : ContentHandler {
|
|
public HasCommentsContainerHandler() {
|
|
Filters.Add(new ActivatingFilter<HasCommentsContainer>("Blog"));
|
|
}
|
|
}
|
|
} |