Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Deep Learning/CHANGEDB.php
Original file line number Diff line number Diff line change
Expand Up @@ -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] = "
";
4 changes: 4 additions & 0 deletions Deep Learning/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
CHANGELOG
=========
v0.2.03
-------
Improved the function call to be consistent

v0.2.01
-------
Removed deprecated function calls
Expand Down
2 changes: 1 addition & 1 deletion Deep Learning/manifest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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";

Expand Down
2 changes: 1 addition & 1 deletion Deep Learning/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
/**
* Sets version information
*/
$moduleVersion = '0.2.02';
$moduleVersion = '0.2.03';
$coreVersion = '28.0.00';
2 changes: 1 addition & 1 deletion Deep Learning/viewDL.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down