From 8343a860646d415f22ef1d00e70e5f64536e722f Mon Sep 17 00:00:00 2001 From: Jean-Marc Pigeon Date: Wed, 26 Nov 2025 12:35:54 -0500 Subject: [PATCH] Adjusting display action --- www/lvlmai.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/lvlmai.php b/www/lvlmai.php index f626a5a..e7badfc 100644 --- a/www/lvlmai.php +++ b/www/lvlmai.php @@ -132,7 +132,7 @@ $actions=$rqst->order("creation desc") ->limit($limit) ->GET(); $line=""; -$count=$offset; +$count=$offset+1; foreach($actions as $action) { $info=substr($action['info'],3,1); $status=$action['status']; @@ -164,7 +164,7 @@ foreach($actions as $action) { $emailfrom=htmlspecialchars($action['emailfrom'],ENT_QUOTES); //generating the table contents $line=$line."\r\n"; - $line=$line."$count $status\r\n"; + $line=$line."$count:$status\r\n"; $line=$line."$date\r\n"; $line=$line."$reverse\r\n"; $line=$line.""; -- 2.47.3