From e022d5f55c416aaaea8dfcea45689eb1693b67a6 Mon Sep 17 00:00:00 2001 From: Hyojin Ahn Date: Fri, 13 Feb 2026 11:05:27 -0500 Subject: [PATCH] [FORECAST LIST] Fixed to show only A note --- public_html/lib/shortInfo_right_lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public_html/lib/shortInfo_right_lib.php b/public_html/lib/shortInfo_right_lib.php index a3d9451..40f8f82 100644 --- a/public_html/lib/shortInfo_right_lib.php +++ b/public_html/lib/shortInfo_right_lib.php @@ -56,7 +56,7 @@ $noteQuery = " FROM tbl_customer tc LEFT OUTER JOIN tbl_note tn ON tc.c_uid = tn.n_customeruid LEFT OUTER JOIN tbl_member tm ON tn.n_memberuid = tm.m_uid - WHERE tc.c_uid = '$c_uid' + WHERE tc.c_uid = '$c_uid' and tn.n_status = 'A' ORDER BY tn.n_createddate DESC LIMIT $note_start, $notesPerPage ";