Skip to content

Commit 4cf8137

Browse files
committed
Merge branch 'release/3.3.7'
2 parents c6005ad + 85998c5 commit 4cf8137

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
All notable changes to the Form Render Skip Logic module will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [3.3.7] - 2019-06-04
6+
- Update LogicTester call for new variable in v9 (Kyle Chesney)
7+
- Add Kyle Chesney as contributor (Kyle Chesney)
8+
9+
510
## [3.3.6] - 2019-06-03
611
### Changed
712
- Checks if records exist before preventing hidden data (Kyle Chesney)

ExternalModule.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ function getFormsAccessMatrix($event_id = null, $record = null) {
302302
$logic = str_replace("''", '[' . $fake_field . ']', $logic);
303303

304304
$logic = Calculate::formatCalcToPHP($logic, $Proj);
305-
$logic = LogicTester::logicPrependEventName($logic, $events_names[$event_id]);
305+
$logic = LogicTester::logicPrependEventName($logic, $events_names[$event_id], $Proj = $Proj);
306306

307307
if (empty($data[$event_id])) {
308308
$data[$event_id] = array();

config.json

+5
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,11 @@
3030
"name": "Tiago Bember",
3131
"email": "tbembersimeao@ufl.edu",
3232
"institution": "University of Florida - CTSI"
33+
},
34+
{
35+
"name": "Kyle Chesney",
36+
"email": "kyle.chesney@ufl.edu",
37+
"institution": "University of Florida - CTSI"
3338
}
3439
],
3540
"project-settings": [

0 commit comments

Comments
 (0)