Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge latest LORIS Core 25.0-release branch #37

Merged
merged 40 commits into from
Jun 15, 2023
Merged
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
eb88669
[Issue tracker] - fix can't Delete attachment (#8337)
kongtiaowang Mar 28, 2023
334e7f0
[configuration] Fix error messages & saving with null Alias (#8349)
CamilleBeau Apr 5, 2023
40079cb
[webpack] remove util shortcut as it is unusedand causes conflicts (#…
ridz1208 Apr 25, 2023
0ef18d1
[Tools] double_escape_report tool breaking on non-string values (#8484)
ridz1208 Apr 25, 2023
522440d
[issue tracker] Populate reporter dropdown (#8469)
regisoc Apr 26, 2023
914db5f
[examiner] Column for 'Instrument' in certification menu appears narr…
miladheshmati Apr 26, 2023
a228c6a
[tools] support JSON instruments in fix_candidate_age.php (#8286)
CamilleBeau Apr 26, 2023
4c58152
[bvl_feedback] Fix Permissions for Feedback Summary & Thread List (#7…
suzanne-lee Apr 26, 2023
577e3a7
[new_profile/sex] Remove strtolower() and force uppercase (#8633)
ridz1208 May 2, 2023
d7e1de1
[NDB_BVL_Feedback] Fixing 500 error on instrument list page (#8694)
AlexandraLivadas May 30, 2023
d0cf5e0
[Login] Case insensitive comparison of Authentication header
driusan Jun 1, 2023
7a5f94e
Fix PHPCS (#8719)
driusan Jun 2, 2023
0bf1a25
Fix nonaggregated column error in mri_violation provisioner (#8716)
laemtl Jun 2, 2023
7f39aa0
[EEG Uploader] Handle Checksum value (#8729)
laemtl Jun 7, 2023
737b67e
[instruments] Fix properly disabling/enabling 'Delete instrument data…
zaliqarosli Jun 7, 2023
5ec5f3a
Merge remote-tracking branch 'aces/24.1-release' into Push241To25
driusan Jun 7, 2023
2399db4
[electrophysiology_uploader] Added 'Help' content for the elctrophysi…
jeffersoncasimir Jun 7, 2023
3c52767
[module_manager] Visibility of 'My Preferences' in menu reflects stat…
jeffersoncasimir Jun 7, 2023
4e3ff96
[Media] Fix Input callback not set (#8720)
charlottesce Jun 7, 2023
9c0f84d
Merge pull request #8735 from driusan/Push241To25
driusan Jun 7, 2023
863e8a5
[battery_manager] React warning messages in console (#8724)
skarya22 Jun 7, 2023
8dad7c2
[user_accounts] Update TestPlan wording (#8718)
CamilleBeau Jun 7, 2023
239859c
24.1 to 25.0 release patch (#8715)
kongtiaowang Jun 8, 2023
1d0ba1e
[document_repository] Include steps to test for multiple files (#8758)
jeffersoncasimir Jun 8, 2023
c6e1a28
[document_repository] Update help content (#8761)
jeffersoncasimir Jun 8, 2023
120ede0
[user_accounts] Update TestPlan.md (#8754)
jeffersoncasimir Jun 8, 2023
344a251
[acknowledgements] Update test plan (#8763)
driusan Jun 8, 2023
55974fd
[instrument & instrument_manager] test plans update (#8765)
regisoc Jun 9, 2023
690b8a8
[dashboard] Load project description from ajax and run through DOMPur…
driusan Jun 12, 2023
f768560
[configuration] Use unsafeInsert/unsafeUpdate for saving values (#8759)
driusan Jun 12, 2023
e16fb67
[new_profile] Fix date requirements and formats with EDC (#8767)
charlottesce Jun 13, 2023
309a665
[Media] Fix warning invalid prop options (#8722)
charlottesce Jun 13, 2023
e98ce56
[Survey] Fix loading of survey instruments (#8647)
driusan Jun 14, 2023
c5db96c
[new_profile] Fix Date Picker (#8775)
skarya22 Jun 14, 2023
1b78796
[api] Test multiple versions (#8778)
driusan Jun 14, 2023
c88bcc4
[survey_accounts] Fix help text (#8789)
zaliqarosli Jun 15, 2023
e18c015
Merge remote-tracking branch 'aces/25.0-release' into 2023-06-15-Merg…
zaliqarosli Jun 15, 2023
e2ef3ab
[Timepoint List] Hide visits that are from user unaffiliated projects…
skarya22 Jun 15, 2023
c2a9c20
[Candidate] Fix wrong comments to avoid confusion in future (#8791)
zaliqarosli Jun 15, 2023
4290be1
Merge remote-tracking branch 'aces/25.0-release' into 2023-06-15-Merg…
zaliqarosli Jun 15, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[issue tracker] Populate reporter dropdown (aces#8469)
In the issue tracker module, the reporter dropdown is populated with the assignee users instead of the reporter users.

This fills the reporter dropdown with the right reporter values.

Fixes aces#8429
regisoc authored Apr 26, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 522440d175976f3bf5a37acc0211581bbdc47cb2
2 changes: 1 addition & 1 deletion modules/issue_tracker/php/issue_tracker.class.inc
Original file line number Diff line number Diff line change
@@ -119,7 +119,7 @@ class Issue_Tracker extends \NDB_Menu_Filter_Form
u.Real_name
FROM issues i
INNER JOIN users u
ON(i.assignee=u.UserID)",
ON(i.reporter=u.UserID)",
[]
);
foreach ($reporter_expanded as $r_row) {