Skip to content

Commit

Permalink
v5.21.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Ross Parker committed Mar 15, 2023
1 parent b7da6b5 commit baa80a7
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 deletions.
5 changes: 5 additions & 0 deletions Free Learning/CHANGEDB.php
Original file line number Diff line number Diff line change
Expand Up @@ -2188,4 +2188,9 @@
//v5.21.11
++$count;
$sql[$count][0] = '5.21.11';
$sql[$count][1] = "";

//v5.21.12
++$count;
$sql[$count][0] = '5.21.12';
$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.12
--------
Adjusted links in unit Resources tab to open in new tab

v5.21.11
--------
Added Expend/Collapse All link for collapsed smart blocks
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.11';
$version = '5.21.12';
$author = 'Ross Parker';
$url = 'http://rossparker.org/free-learning';

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 @@ -666,7 +666,7 @@
@$dom->loadHTML($resourceContents);
foreach ($dom->getElementsByTagName('a') as $node) {
if ($node->nodeValue != '') {
$linksArray[$linksCount] = "<li><a href='".$node->getAttribute('href')."'>".$node->nodeValue.'</a></li>';
$linksArray[$linksCount] = "<li><a target='_blank' href='".$node->getAttribute('href')."'>".$node->nodeValue.'</a></li>';
++$linksCount;
}
}
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.11';
$moduleVersion = '5.21.12';
$coreVersion = '24.0.00';

0 comments on commit baa80a7

Please sign in to comment.