Skip to content

Commit

Permalink
v1.5.09
Browse files Browse the repository at this point in the history
  • Loading branch information
Ross Parker committed Jul 26, 2022
1 parent e1878d1 commit b72deb2
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 6 deletions.
5 changes: 5 additions & 0 deletions ATL/CHANGEDB.php
Original file line number Diff line number Diff line change
Expand Up @@ -171,3 +171,8 @@
++$count;
$sql[$count][0] = '1.5.08';
$sql[$count][1] = '';

//v1.5.09
++$count;
$sql[$count][0] = '1.5.09';
$sql[$count][1] = '';
4 changes: 4 additions & 0 deletions ATL/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
CHANGELOG
=========
v1.5.09
-------
Fixed student and parent PHP dashboard warning and exception

v1.5.08
-------
Final refactoring of linkTop divs
Expand Down
4 changes: 2 additions & 2 deletions ATL/hook_parentalDashboard_atlView.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

global $page;
global $page, $container;

$returnInt = null;

Expand All @@ -33,7 +33,7 @@
$page->scripts->add('chart');

$returnInt .= visualiseATL($container, $gibbonPersonID);

$returnInt .= getATLRecord($guid, $connection2, $gibbonPersonID);
}

Expand Down
4 changes: 2 additions & 2 deletions ATL/hook_studentDashboard_atlView.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

global $page;
global $page, $container;

$returnInt = null;

Expand All @@ -33,7 +33,7 @@
$page->scripts->add('chart');

$returnInt .= visualiseATL($container, $session->get('gibbonPersonID'));

$returnInt .= getATLRecord($guid, $connection2, $session->get('gibbonPersonID'));
}

Expand Down
2 changes: 1 addition & 1 deletion ATL/manifest.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
$entryURL = 'atl_write.php';
$type = 'Additional';
$category = 'Assess';
$version = '1.5.08';
$version = '1.5.09';
$author = 'Ross Parker';
$url = 'http://rossparker.org';

Expand Down
2 changes: 1 addition & 1 deletion ATL/version.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
/**
* Sets version information.
*/
$moduleVersion = '1.5.08';
$moduleVersion = '1.5.09';
$coreVersion = '23.0.00';

0 comments on commit b72deb2

Please sign in to comment.