This commit is contained in:
xiaomlove
2025-09-23 17:12:20 +07:00
parent c1845f276b
commit 30e5e305bb
3 changed files with 4 additions and 4 deletions

View File

@@ -212,7 +212,7 @@ class Imdb
$autodata .= rtrim(trim($temp), ",");
}
elseif ($creator)
$autodata .= "<strong><font color=\"DarkRed\">".$lang_details['text_creator']."</font></strong>".$creator;
$autodata .= "<strong><font color=\"DarkRed\">".$lang_details['text_creator']."</font></strong>".implode(", ", array_column($creator, 'name'));
$autodata .= "<br />\n<strong><font color=\"DarkRed\">".$lang_details['text_written_by']."</font></strong>";
$temp = "";

View File

@@ -289,8 +289,8 @@ stdfoot();
}
if ($action == "moveordel")
{
$pm_id = (int) $_POST['id'] ?? 0;
$pm_box = (int) $_POST['box'];
$pm_id = intval($_POST['id'] ?? 0);
$pm_box = intval($_POST['box'] ?? 0);
$pm_messages = $_POST['messages'];
if ($_POST['markread'])
{

View File

@@ -225,7 +225,7 @@ tr($lang_usercp['row_school'], "<select name=school>$schools</select>", 1);
<option value='$CURUSER[avatar]'>".$lang_usercp['select_choose_avatar']."</option>
<option value='" . get_protocol_prefix() . $BASEURL . "/pic/default_avatar.png'>".$lang_usercp['select_nothing']."</option>
$text
</select><input type=text name=avatar style=\"width: 400px\" value=\"" . htmlspecialchars($CURUSER["avatar"]) .
</select><input type=text name=avatar style=\"width: 400px\" value=\"" . htmlspecialchars($CURUSER["avatar"] ?? '') .
"\"><br />\n".$lang_usercp['text_avatar_note'].($enablebitbucket_main == 'yes' ? $lang_usercp['text_bitbucket_note'] : ""),1);
tr($lang_usercp['row_info'], "<textarea name=\"info\" style=\"width:700px\" rows=\"10\" >" . htmlspecialchars($CURUSER["info"]) . "</textarea><br />".$lang_usercp['text_info_note'], 1);
submit();