Skip to content

Commit

Permalink
v1.3.01
Browse files Browse the repository at this point in the history
  • Loading branch information
SKuipers committed Mar 26, 2019
1 parent a75285f commit 7bc7fe5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
5 changes: 5 additions & 0 deletions Higher Education/CHANGEDB.php
Original file line number Diff line number Diff line change
Expand Up @@ -137,3 +137,8 @@
++$count;
$sql[$count][0] = '1.3.00';
$sql[$count][1] = "";

//v1.3.01
++$count;
$sql[$count][0] = '1.3.01';
$sql[$count][1] = "";
4 changes: 4 additions & 0 deletions Higher Education/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
CHANGELOG
=========
v1.3.01
-------
Refactoring forms

v1.3.00
-------
Refactoring of breadcrumbs and error messages, translation improvements
Expand Down
2 changes: 1 addition & 1 deletion Higher Education/manifest.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
$entryURL = 'index.php';
$type = 'Additional';
$category = 'Other';
$version = '1.3.00';
$version = '1.3.01';
$author = 'Ross Parker';
$url = 'http://rossparker.org';

Expand Down
2 changes: 1 addition & 1 deletion Higher Education/references_manage_addMulti.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
<?php
echo "<option value='Please select...'>Please select...</option>";
try {
$data = array('gibbonSchoolYearID' => $_SESSION[$guid]['gibbonSchoolYearID'], 'gibbonPersonID1' => $gibbonPersonID, 'gibbonPersonID2' => $gibbonPersonID);
$data = array('gibbonSchoolYearID' => $_SESSION[$guid]['gibbonSchoolYearID']);
$sql = "SELECT gibbonPerson.gibbonPersonID, surname, preferredName, title FROM gibbonPerson JOIN gibbonStaff ON (gibbonPerson.gibbonPersonID=gibbonStaff.gibbonPersonID) WHERE type='Teaching' AND gibbonPerson.status='Full' ORDER BY surname, preferredName";
$result = $connection2->prepare($sql);
$result->execute($data);
Expand Down
2 changes: 1 addition & 1 deletion Higher Education/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
/**
* Sets version information.
*/
$moduleVersion = '1.3.00';
$moduleVersion = '1.3.01';

0 comments on commit 7bc7fe5

Please sign in to comment.