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

[issue_tracker] Include all sites in dropdown for issue tracker #6135

Merged
merged 2 commits into from
Mar 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,15 @@ database (PR #5260)
- Fix bug where examiner form field was incorrectly hidden (PR #6085)

### Modules

#### Candidate Profile
- New module created to provide dashboard of a single candidate's data across all
modules. (Various PRs)

##### Issue Tracker
- The issue_tracker module now has the feature of uploading attachments to new or existing issues.
- All sites now appear in the dropdown for site, not only study sites. (PR #6135)


#### Battery Manager
- New module created to manage the entries in the `test_battery` table of the database.
This allows projects to modify their instrument battery without requiring backend access.
Expand Down
2 changes: 1 addition & 1 deletion modules/issue_tracker/ajax/EditIssue.php
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ function getIssueFields()
//get field options
if ($user->hasPermission('access_all_profiles')) {
// get the list of study sites - to be replaced by the Site object
$sites = Utility::getSiteList();
$sites = Utility::getSiteList(false, true);
} else {
// allow only to view own site data
$sites = $user->getStudySites();
Expand Down