board config cleanup

This commit is contained in:
NottyNoz 2023-03-22 19:33:16 -04:00 committed by Shish
parent c4317cab0d
commit 4253d357af
3 changed files with 4 additions and 4 deletions

View File

@ -33,7 +33,7 @@ class ImageIO extends Extension
public const THUMBNAIL_TYPES = [
'JPEG' => MimeType::JPEG,
'WEBP (Not IE/Safari compatible)' => MimeType::WEBP
'WEBP (Not IE compatible)' => MimeType::WEBP
];
public function onInitExt(InitExtEvent $event)

View File

@ -153,7 +153,7 @@ class Ratings extends Extension
$options[$rating->name] = $rating->code;
}
$sb = $event->panel->create_new_block("Post Ratings");
$sb = $event->panel->create_new_block("Post Rating Visibility");
$sb->start_table();
foreach (array_keys($_shm_user_classes) as $key) {
if ($key == "base" || $key == "hellbanned") {

View File

@ -345,8 +345,8 @@ class UserPage extends Extension
$sb->add_choice_option(
"user_loginshowprofile",
[
"return to previous page" => 0, // 0 is default
"send to user profile" => 1],
"Return to previous page" => 0, // 0 is default
"Send to user profile" => 1],
"On log in/out",
true
);