This is an automated email generated because a ref change occurred in the
git repository for project duojsonparge.git.
The branch, master has been updated
via a340ebe1c2173a36dc00257829d8fcc0ccc8acbe (commit)
from 2678a10025b2b262b096c2833a372d7be429d61e (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit a340ebe1c2173a36dc00257829d8fcc0ccc8acbe
Author: hahahahacker2009 <
hahahaha...@gmail.com>
Date: Wed, 28 Aug 2024 15:01:28 +0700
URL: <
https://repo.or.cz/duojsonparge.git/a340ebe1c2173a36>
shorter name
---
comment/list.php | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/comment/list.php b/comment/list.php
index 8f3acee93a67..6fb05a4d6fc5 100644
--- a/comment/list.php
+++ b/comment/list.php
@@ -69,17 +69,17 @@ if ($mode == 0) {
</form>
<?php
}
-foreach ($arr as $i => $cmtarr) {
+foreach ($arr as $i => $cmt) {
if ($i >= $start && $i < ($start + $n_rows)) {
if ($mode == 1) {
- echo "<p><strong><a href=\"/comment/{$cmtarr['id']}.html\">"
- . "{$cmtarr['title']}</a></strong></p>\n";
+ echo "<p><strong><a href=\"/comment/{$cmt['id']}.html\">"
+ . "{$cmt['title']}</a></strong></p>\n";
} else {
- echo "<p><strong><a href=\"/comment/{$cmtarr['id']}\">"
- . "{$cmtarr['title']}</a></strong></p>\n";
+ echo "<p><strong><a href=\"/comment/{$cmt['id']}\">"
+ . "{$cmt['title']}</a></strong></p>\n";
}
- echo "<pre>{$cmtarr['votes']} | bởi "
- . "{$cmtarr['username']} {$cmtarr['datetime_string']}</pre>\n";
+ echo "<pre>{$cmt['votes']} | bởi "
+ . "{$cmt['username']} {$cmtarr['datetime_string']}</pre>\n";
}
}
footer:
-----------------------------------------------------------------------
Summary of changes:
comment/list.php | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
repo.or.cz automatic notification. Contact project admin
hahahaha...@gmail.com
if you want to unsubscribe, or site admin
ad...@repo.or.cz if you receive
no reply.
--
duojsonparge.git ("Scripts to parse duolingo forum's json file and generate minimal HTML web page.")