Skip to content

Tags: HenriRabalais/Loris

Tags

v17.0.4

Toggle v17.0.4's commit message
[LorisForm] Fixing the loris form '0' emptying issue (aces#2781)

$this->form->addRule("value", "Required", 'required'); sets the 'required fail' when the user submits a value of "0", because empty($value) is true for 0.

This updates the code to explicitly check for the empty string to detect no input, and avoids PHP's empty() function for validation.

v17.0.3

Toggle v17.0.3's commit message
Revert "[MRI Violated scans] Have the minc file linked to brainbrowse…

…r (Redmine 10928) (aces#2219)" (aces#2794)

This reverts commit 1bf483f.

The addition of the parameter "minc_location" parameter added by this commit introduces
a severe security hole, where user input is getting passed directly to the PHP
passthru command.

v17.0.2

Toggle v17.0.2's commit message
Update VERSION to 17.0.2

v17.0.1

Toggle v17.0.1's commit message
update VERSION file for LORIS 17.0.1 (aces#2567)

v17.0.0

Toggle v17.0.0's commit message
Update VERSION

v16.1.3

Toggle v16.1.3's commit message
Remove Xdebug as it was causing segmentation faults (aces#2461)

v16.1.2

Toggle v16.1.2's commit message
Fix permission with AJAX scripts (aces#2403)

The return value of $client->initialize wasn't checked, resulting
in data being sent to the client even if they weren't logged in.

v17.0.0-rc1

Toggle v17.0.0-rc1's commit message
[Data Release] Initial Data Release help content (aces#2400)

* Updating Help schema to include Data Release help content

* Patch to include help content for Data Release

* Updating 16.1 to 17.0 release patch

v16.1.1

Toggle v16.1.1's commit message
Made 403 Error checking slightly stricter (aces#2185)

This makes it so that LORIS will only send a 403 error if the user was
attempting to login in order to prevent the login page from returning
a 403 on first access.

v16.1.0

Toggle v16.1.0's commit message
Imaging Uploader: Inverted the condition for throwing the error when …

…checking for the new naming convention: Redmine 10849 (aces#2142)

* Imaging Uploader: Inverted the condition for throwing the error when checking for the new naming convention.

It was incorrect.