Skip to content

Commit

Permalink
Merge branch 'release/1.10.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
pbchase committed Jan 9, 2023
2 parents d232848 + 00e1414 commit 40dfc45
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
All notable changes to the Imagemap module will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [1.10.1] - 2023-01-09
### Changed
- bug fix for surveys (Andrew Martin)


## [1.10.0] - 2023-01-05
### Changed
- Updated to framework 9 (which means minimum REDCap version for this release is 12.0.4)
Expand Down
2 changes: 1 addition & 1 deletion ExternalModule.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function redcap_every_page_top($project_id) {
$this->injectImageMaps();
}
// Handle Survey pages
else if (in_array(PAGE, ['surveys/index.php', 'Surveys/theme_view.php']) && !empty($GET['id'])) {
else if (in_array(PAGE, ['surveys/index.php', 'Surveys/theme_view.php']) && !empty($_GET['id'])) {
if (!isset($_GET['s']) && defined('NOAUTH')) {
// Do not remember this use case
return;
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.10.0
1.10.1

0 comments on commit 40dfc45

Please sign in to comment.