Skip to content

Commit

Permalink
v5.21.07
Browse files Browse the repository at this point in the history
  • Loading branch information
Ross Parker committed Nov 20, 2022
1 parent 1beafd7 commit 9b86a90
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
5 changes: 5 additions & 0 deletions Free Learning/CHANGEDB.php
Original file line number Diff line number Diff line change
Expand Up @@ -2161,3 +2161,8 @@
++$count;
$sql[$count][0] = '5.21.06';
$sql[$count][1] = "";

//v5.21.07
++$count;
$sql[$count][0] = '5.21.07';
$sql[$count][1] = "";
4 changes: 4 additions & 0 deletions Free Learning/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
CHANGELOG
=========
v5.21.07
--------
Added pagination to Work Pending Approval report

v5.21.06
--------
Extended execution time and memory limit for unit download
Expand Down
2 changes: 1 addition & 1 deletion Free Learning/manifest.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
$entryURL = 'units_browse.php';
$type = 'Additional';
$category = 'Learn';
$version = '5.21.06';
$version = '5.21.07';
$author = 'Ross Parker';
$url = 'http://rossparker.org/free-learning';

Expand Down
4 changes: 2 additions & 2 deletions Free Learning/report_workPendingApproval.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@

$criteria = $unitStudentGateway->newQueryCriteria()
->sortBy(['timestampCompletePending'])
->pageSize(50)
->fromPOST();

if (!empty($allMentors)) {
Expand Down Expand Up @@ -195,8 +196,7 @@
$gateway = $container->get(INGateway::class);
$criteria = $gateway
->newQueryCriteria()
->filterBy('gibbonPersonID', $values['gibbonPersonID'])
->fromPOST();
->filterBy('gibbonPersonID', $values['gibbonPersonID']);
$personalDescriptors = $gateway->queryIndividualNeedsPersonDescriptors($criteria)->toArray();

if (count($personalDescriptors) > 0) {
Expand Down
2 changes: 1 addition & 1 deletion Free Learning/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
/**
* Sets version information.
*/
$moduleVersion = '5.21.06';
$moduleVersion = '5.21.07';
$coreVersion = '24.0.00';

0 comments on commit 9b86a90

Please sign in to comment.