mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
misc fix
This commit is contained in:
@@ -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 = "";
|
||||
|
||||
@@ -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'])
|
||||
{
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user