mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-24 03:57:22 +08:00
misc fix
This commit is contained in:
+1
-1
@@ -212,7 +212,7 @@ class Imdb
|
|||||||
$autodata .= rtrim(trim($temp), ",");
|
$autodata .= rtrim(trim($temp), ",");
|
||||||
}
|
}
|
||||||
elseif ($creator)
|
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>";
|
$autodata .= "<br />\n<strong><font color=\"DarkRed\">".$lang_details['text_written_by']."</font></strong>";
|
||||||
$temp = "";
|
$temp = "";
|
||||||
|
|||||||
+2
-2
@@ -289,8 +289,8 @@ stdfoot();
|
|||||||
}
|
}
|
||||||
if ($action == "moveordel")
|
if ($action == "moveordel")
|
||||||
{
|
{
|
||||||
$pm_id = (int) $_POST['id'] ?? 0;
|
$pm_id = intval($_POST['id'] ?? 0);
|
||||||
$pm_box = (int) $_POST['box'];
|
$pm_box = intval($_POST['box'] ?? 0);
|
||||||
$pm_messages = $_POST['messages'];
|
$pm_messages = $_POST['messages'];
|
||||||
if ($_POST['markread'])
|
if ($_POST['markread'])
|
||||||
{
|
{
|
||||||
|
|||||||
+1
-1
@@ -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='$CURUSER[avatar]'>".$lang_usercp['select_choose_avatar']."</option>
|
||||||
<option value='" . get_protocol_prefix() . $BASEURL . "/pic/default_avatar.png'>".$lang_usercp['select_nothing']."</option>
|
<option value='" . get_protocol_prefix() . $BASEURL . "/pic/default_avatar.png'>".$lang_usercp['select_nothing']."</option>
|
||||||
$text
|
$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);
|
"\"><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);
|
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();
|
submit();
|
||||||
|
|||||||
Reference in New Issue
Block a user