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+或以上时,此项为必填 +