From e5e8ccb24ee686d6bc3d1f4aa167a575f0dd8fe5 Mon Sep 17 00:00:00 2001 From: xiaomlove Date: Mon, 1 Mar 2021 21:31:01 +0800 Subject: [PATCH] fix details.php subtitle 2 --- public/details.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/details.php b/public/details.php index 3c2a9e0c..c1b7710c 100644 --- a/public/details.php +++ b/public/details.php @@ -122,7 +122,7 @@ else { while($a = mysql_fetch_assoc($r)) { $lang = "\"""; - $lang .= "  ". $a["title"]. "".(get_user_class() >= $submanage_class || (get_user_class() >= $delownsub_class && $a["uppedby"] == $CURUSER["id"]) ? " [".$lang_details['text_delete']."]" : "")."  ".($a["anonymous"] == 'yes' ? $lang_details['text_anonymous'] . (get_user_class() >= $viewanonymous_class ? get_username($a['uppedby'],false,true,true,false,true) : "") : get_username($a['uppedby'])).""; + $lang .= "  ". $a["title"]. "".(get_user_class() >= $submanage_class || (get_user_class() >= $delownsub_class && $a["uppedby"] == $CURUSER["id"]) ? " [".$lang_details['text_delete']."]" : "")."  ".($a["anonymous"] == 'yes' ? $lang_details['text_anonymous'] . (get_user_class() >= $viewanonymous_class ? get_username($a['uppedby'],false,true,true,false,true) : "") : get_username($a['uppedby'])).""; print($lang); } }