From 17188387b4db63cff47fdf7358268871445e4fa4 Mon Sep 17 00:00:00 2001 From: Ali Alam Date: Wed, 29 Apr 2026 10:28:59 +0800 Subject: [PATCH] Improved the function call to be consistent --- Deep Learning/CHANGEDB.php | 6 ++++++ Deep Learning/CHANGELOG.txt | 4 ++++ Deep Learning/manifest.php | 2 +- Deep Learning/version.php | 2 +- Deep Learning/viewDL.php | 2 +- 5 files changed, 13 insertions(+), 3 deletions(-) diff --git a/Deep Learning/CHANGEDB.php b/Deep Learning/CHANGEDB.php index 3fa92a4..ffb6061 100644 --- a/Deep Learning/CHANGEDB.php +++ b/Deep Learning/CHANGEDB.php @@ -117,3 +117,9 @@ $sql[$count][0] = '0.2.02'; $sql[$count][1] = " "; + +//v0.2.03 +++$count; +$sql[$count][0] = '0.2.03'; +$sql[$count][1] = " +"; diff --git a/Deep Learning/CHANGELOG.txt b/Deep Learning/CHANGELOG.txt index 59df085..c7f9cd5 100644 --- a/Deep Learning/CHANGELOG.txt +++ b/Deep Learning/CHANGELOG.txt @@ -1,5 +1,9 @@ CHANGELOG ========= +v0.2.03 +------- +Improved the function call to be consistent + v0.2.01 ------- Removed deprecated function calls diff --git a/Deep Learning/manifest.php b/Deep Learning/manifest.php index 3159093..99438b9 100644 --- a/Deep Learning/manifest.php +++ b/Deep Learning/manifest.php @@ -25,7 +25,7 @@ $entryURL = "view.php"; $type = "Additional"; $category = 'Learn'; -$version = '0.2.02'; +$version = '0.2.03'; $author = "Gibbon Foundation"; $url = "https://gibbonedu.org"; diff --git a/Deep Learning/version.php b/Deep Learning/version.php index 2fe8909..850cfca 100644 --- a/Deep Learning/version.php +++ b/Deep Learning/version.php @@ -22,5 +22,5 @@ /** * Sets version information */ -$moduleVersion = '0.2.02'; +$moduleVersion = '0.2.03'; $coreVersion = '28.0.00'; diff --git a/Deep Learning/viewDL.php b/Deep Learning/viewDL.php index 5907fbf..e5f254a 100755 --- a/Deep Learning/viewDL.php +++ b/Deep Learning/viewDL.php @@ -45,7 +45,7 @@ $enrolmentGateway = $container->get(EnrolmentGateway::class); $studentGateway = $container->get(StudentGateway::class); - $children = $studentGateway->selectActiveStudentsByFamilyAdult($gibbonSchoolYearID, $gibbonPersonID)->fetchAll(); + $children = $studentGateway->selectActiveStudentsByFamilyAdult($gibbonSchoolYearID, $gibbonPersonID)->fetchGroupedUnique(); if (empty($children)) { echo Format::alert(__('There are no records to display.'), 'message');