Skip to content

Commit

Permalink
Merge branch 'release/1.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
pbchase committed Nov 6, 2020
2 parents d7ab62f + a9954ef commit 24fdef6
Show file tree
Hide file tree
Showing 5 changed files with 570 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
All notable changes to Move Data to Other Event will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).


## [1.1.1] - 2020-11-06
### Changed
- Fix bug: unauthorized access attempt caused crash (Kyle Chesney)
- Replace DOI in Zenodo badge with the 'all versions' DOI (Philip Chase)

### Added
- add test project xml file (Kyle Chesney)


## [1.1.0] - 2020-02-14
### Changed
- allow actions involving first form first event correct error in checking for record_pk (Kyle Chesney)
Expand Down
3 changes: 3 additions & 0 deletions ExternalModule.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ function redcap_every_page_top($project_id) {
return;
}

// needed to bypass uncatchable exception in framework->getUser()
if ( !defined('USERID') ) return;

if ( !$this->framework->getUser()->hasDesignRights() &&
( $this->getSystemSetting('restrict_to_designers_global') ||
!$project_settings['allow_non_designers']['value']) )
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Move Data to Other Event

[![DOI](https://zenodo.org/badge/204476967.svg)](https://zenodo.org/badge/latestdoi/204476967)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.3668299.svg)](https://doi.org/10.5281/zenodo.3668299)

A REDCap module that allows privileged users to easily move data, uploaded files, and signatures between events. The end user can move one subject's data at a time, moving either an entire event or a single form.

Expand Down
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.1.1

0 comments on commit 24fdef6

Please sign in to comment.