From a340ebe1c2173a36dc00257829d8fcc0ccc8acbe Mon Sep 17 00:00:00 2001 From: hahahahacker2009 Date: Wed, 28 Aug 2024 15:01:28 +0700 Subject: [PATCH] shorter name --- comment/list.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/comment/list.php b/comment/list.php index 8f3acee..6fb05a4 100644 --- a/comment/list.php +++ b/comment/list.php @@ -69,17 +69,17 @@ if ($mode == 0) { $cmtarr) { +foreach ($arr as $i => $cmt) { if ($i >= $start && $i < ($start + $n_rows)) { if ($mode == 1) { - echo "

" - . "{$cmtarr['title']}

\n"; + echo "

" + . "{$cmt['title']}

\n"; } else { - echo "

" - . "{$cmtarr['title']}

\n"; + echo "

" + . "{$cmt['title']}

\n"; } - echo "
{$cmtarr['votes']} | bởi "
-		   . "{$cmtarr['username']} {$cmtarr['datetime_string']}
\n"; + echo "
{$cmt['votes']} | bởi "
+		   . "{$cmt['username']} {$cmtarr['datetime_string']}
\n"; } } footer: -- 2.11.4.GIT