diff --git a/include/core.php b/include/core.php index 32affd9d..e48a5cc4 100644 --- a/include/core.php +++ b/include/core.php @@ -48,7 +48,6 @@ define ("UC_NEXUS_MASTER", 9); define ("UC_VIP", 10); define ("UC_RETIREE",11); define ("UC_UPLOADER",12); -define ("UC_FORUM_MODERATOR", 12); define ("UC_MODERATOR",13); define ("UC_ADMINISTRATOR",14); define ("UC_SYSOP",15); diff --git a/include/functions.php b/include/functions.php index c67b865a..79fd4cd9 100644 --- a/include/functions.php +++ b/include/functions.php @@ -425,7 +425,6 @@ function get_user_class_name($class, $compact = false, $b_colored = false, $I18N case UC_VIP: {$class_name = $this_lang_functions['text_vip']; break;} case UC_UPLOADER: {$class_name = $this_lang_functions['text_uploader']; break;} case UC_RETIREE: {$class_name = $this_lang_functions['text_retiree']; break;} - case UC_FORUM_MODERATOR: {$class_name = $this_lang_functions['text_forum_moderator']; break;} case UC_MODERATOR: {$class_name = $this_lang_functions['text_moderators']; break;} case UC_ADMINISTRATOR: {$class_name = $this_lang_functions['text_administrators']; break;} case UC_SYSOP: {$class_name = $this_lang_functions['text_sysops']; break;} @@ -447,7 +446,6 @@ function get_user_class_name($class, $compact = false, $b_colored = false, $I18N case UC_VIP: {$class_name_color = $en_lang_functions['text_vip']; break;} case UC_UPLOADER: {$class_name_color = $en_lang_functions['text_uploader']; break;} case UC_RETIREE: {$class_name_color = $en_lang_functions['text_retiree']; break;} - case UC_FORUM_MODERATOR: {$class_name_color = $en_lang_functions['text_forum_moderator']; break;} case UC_MODERATOR: {$class_name_color = $en_lang_functions['text_moderators']; break;} case UC_ADMINISTRATOR: {$class_name_color = $en_lang_functions['text_administrators']; break;} case UC_SYSOP: {$class_name_color = $en_lang_functions['text_sysops']; break;}