Skip to content

Commit

Permalink
v5.25.07
Browse files Browse the repository at this point in the history
  • Loading branch information
Ross Parker committed Feb 27, 2025
1 parent df64b73 commit b94eb1a
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 12 deletions.
5 changes: 5 additions & 0 deletions Free Learning/CHANGEDB.php
Original file line number Diff line number Diff line change
Expand Up @@ -2360,3 +2360,8 @@
++$count;
$sql[$count][0] = '5.25.06';
$sql[$count][1] = "";

//v5.25.07
++$count;
$sql[$count][0] = '5.25.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.25.07
-------
Fixed PHP mangling in Unit Mentor files

v5.25.06
-------
Improved performance of scripts with the Big Data setting turned on
Expand Down
2 changes: 1 addition & 1 deletion Free Learning/manifest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
$entryURL = 'units_browse.php';
$type = 'Additional';
$category = 'Learn';
$version = '5.25.06';
$version = '5.25.07';
$author = "Gibbon Foundation";
$url = "https://gibbonedu.org";

Expand Down
2 changes: 1 addition & 1 deletion Free Learning/units_browse_details.php
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@

$table->addColumn('classMentor', __m('Class/Mentor'))
->description(__m('Grouping'))
->sortable(['course', 'class', 'surname', 'preferredName'])
->sortable(['course', 'class'])
->width('20%')
->format(function ($student) use (&$collaborationKeys) {
$return = '';
Expand Down
13 changes: 7 additions & 6 deletions Free Learning/units_mentor_approval.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
<?php

use Gibbon\View\View;
use Gibbon\Forms\Form;
use Gibbon\Services\Format;
use Gibbon\Domain\System\SettingGateway;
use Gibbon\Module\FreeLearning\Domain\UnitStudentGateway;
/*
Gibbon: the flexible, open school platform
Founded by Ross Parker at ICHK Secondary. Built by Ross Parker, Sandra Kuipers and the Gibbon community (https://gibbonedu.org/about/)
Copyright © 2010, Gibbon Foundation
Expand All @@ -24,6 +19,12 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

use Gibbon\View\View;
use Gibbon\Forms\Form;
use Gibbon\Services\Format;
use Gibbon\Domain\System\SettingGateway;
use Gibbon\Module\FreeLearning\Domain\UnitStudentGateway;

// Module includes
require_once __DIR__ . '/moduleFunctions.php';

Expand Down
6 changes: 3 additions & 3 deletions Free Learning/units_mentor_approvalProcess.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

use Gibbon\Domain\System\DiscussionGateway;
use Gibbon\Module\FreeLearning\Domain\UnitStudentGateway;
/*
Gibbon: the flexible, open school platform
Founded by Ross Parker at ICHK Secondary. Built by Ross Parker, Sandra Kuipers and the Gibbon community (https://gibbonedu.org/about/)
Copyright © 2010, Gibbon Foundation
Expand All @@ -22,6 +20,8 @@
*/

use Gibbon\Domain\System\SettingGateway;
use Gibbon\Domain\System\DiscussionGateway;
use Gibbon\Module\FreeLearning\Domain\UnitStudentGateway;

require_once '../../gibbon.php';

Expand Down
2 changes: 1 addition & 1 deletion Free Learning/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
/**
* Sets version information.
*/
$moduleVersion = '5.25.06';
$moduleVersion = '5.25.07';
$coreVersion = '28.0.00';

0 comments on commit b94eb1a

Please sign in to comment.