Skip to content
Snippets Groups Projects
Commit 62d99b1e authored by Jared Hancock's avatar Jared Hancock
Browse files

search: Fix search for unassigned tickets

parent e8cedfd6
No related branches found
No related tags found
No related merge requests found
...@@ -598,7 +598,7 @@ if ($results) { ...@@ -598,7 +598,7 @@ if ($results) {
<label for="assignee"><?php echo __('Assigned To');?>:</label> <label for="assignee"><?php echo __('Assigned To');?>:</label>
<select id="assignee" name="assignee"> <select id="assignee" name="assignee">
<option value="">&mdash; <?php echo __('Anyone');?> &mdash;</option> <option value="">&mdash; <?php echo __('Anyone');?> &mdash;</option>
<option value="0">&mdash; <?php echo __('Unassigned');?> &mdash;</option> <option value="s0">&mdash; <?php echo __('Unassigned');?> &mdash;</option>
<option value="s<?php echo $thisstaff->getId(); ?>"><?php echo __('Me');?></option> <option value="s<?php echo $thisstaff->getId(); ?>"><?php echo __('Me');?></option>
<?php <?php
if(($users=Staff::getStaffMembers())) { if(($users=Staff::getStaffMembers())) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment