diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/comment/helpers/comment_menu.php | 2 | ||||
-rw-r--r-- | modules/spam_filter/helpers/spam_filter_menu.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/comment/helpers/comment_menu.php b/modules/comment/helpers/comment_menu.php index b98140a6..2cc6d789 100644 --- a/modules/comment/helpers/comment_menu.php +++ b/modules/comment/helpers/comment_menu.php @@ -22,7 +22,7 @@ class comment_menu_Core { $menu->get("content_menu") ->append(Menu::factory("link") ->id("comments") - ->label(_("Comment Moderation")) + ->label(_("Comments")) ->url("#")); } } diff --git a/modules/spam_filter/helpers/spam_filter_menu.php b/modules/spam_filter/helpers/spam_filter_menu.php index 06ff14d6..7788063c 100644 --- a/modules/spam_filter/helpers/spam_filter_menu.php +++ b/modules/spam_filter/helpers/spam_filter_menu.php @@ -19,10 +19,10 @@ */ class spam_filter_menu_Core { public static function admin($menu, $theme) { - $menu->get("content_menu") + $menu->get("settings_menu") ->append(Menu::factory("link") ->id("spam_filter") - ->label(_("Configure Spam Filter")) + ->label(_("Spam Filtering")) ->url(url::site("admin/spam_filter"))); } } |