From 64d19a40bd83bfcc16644402d46adcb1890ff90e Mon Sep 17 00:00:00 2001 From: Leonmmcoset Date: Wed, 16 Jul 2025 18:48:42 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E7=AE=A1=E7=90=86?= =?UTF-8?q?=E5=91=98=E5=AF=86=E7=A0=81=E4=B8=BA=E7=A9=BA=E5=8F=8A=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E5=B9=B3=E5=8F=B0=E9=80=89=E6=8B=A9=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复config.php中管理员密码为空的安全问题,并设置不同权限 在upload_app.php中添加平台选择提示信息以避免混淆 在review_apps.php中优化开发者信息显示逻辑 --- admin/review_apps.php | 5 +++-- developer/upload_app.php | 3 +++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/admin/review_apps.php b/admin/review_apps.php index 632bb7b..d7c7a1c 100644 --- a/admin/review_apps.php +++ b/admin/review_apps.php @@ -117,8 +117,9 @@ if (!($conn instanceof mysqli)) { log_error('数据库连接错误: 连接不是MySQLi实例', __FILE__, __LINE__); $error = '数据库连接错误,请检查配置'; } else { - $stmt = $conn->prepare("SELECT a.id, a.name, a.description, a.status, a.created_at + $stmt = $conn->prepare("SELECT a.id, a.name, a.description, a.status, a.created_at, d.username FROM apps a + LEFT JOIN developers d ON a.developer_id = d.id WHERE a.status = 'pending' ORDER BY a.created_at DESC"); if (!$stmt) { @@ -252,7 +253,7 @@ if (!($conn instanceof mysqli)) {

标签:

-

开发者:

+

开发者:

提交时间:

描述:

diff --git a/developer/upload_app.php b/developer/upload_app.php index 35b2d45..5ba6843 100644 --- a/developer/upload_app.php +++ b/developer/upload_app.php @@ -500,6 +500,9 @@ if (!($conn instanceof mysqli)) { 当年龄分级为12+或以上时,此项为必填 +
+ 信息:我们尝试了开发多选子平台的功能,但是就会导致以前的app会全部显示“未知平台”,如果你是Windows的话,选择Win7以上选项,如果你是Linux的话,选择APP支持平台中的任意一个即可。 +