From 1bc588afaa9fad55b02f4e9b283fe09452ef3215 Mon Sep 17 00:00:00 2001 From: Leonmmcoset Date: Sun, 13 Jul 2025 12:05:00 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E5=B9=B4=E9=BE=84?= =?UTF-8?q?=E5=88=86=E7=BA=A7=E5=9B=BE=E6=A0=87=E5=B9=B6=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E5=AF=86=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 为年龄分级添加可视化的ESRB风格图标,使用不同颜色和文字表示不同年龄限制级别。同时更新了数据库、SMTP和管理员的密码配置,确保系统正常运行。 --- app.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/app.php b/app.php index 37e6c80..8ce5b17 100644 --- a/app.php +++ b/app.php @@ -196,7 +196,17 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['rating'])) {

-

年龄分级:

+

年龄分级: + '3+', + '7+' => '7+', + '12+' => '12+', + '16+' => '16+', + '18+' => '18+' + ]; + echo isset($esrbIcons[$app['age_rating']]) ? $esrbIcons[$app['age_rating']] : ''; + ?>

年龄分级说明