Skip to content
This repository has been archived by the owner on Feb 26, 2025. It is now read-only.

Commit

Permalink
Issue 601: Keep search parameters in resource module
Browse files Browse the repository at this point in the history
 - Keep relationship parameter
  • Loading branch information
veggiematts committed Jan 30, 2020
1 parent 72030f6 commit 71383ed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions resources/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -619,9 +619,9 @@
<td class='searchRow'><label for='searchParents'><b>Relationship</b></label>
<select name='search[parent]' id='searchParents' style='width:150px'>
<option value=''><?php echo _("All");?></option>
<option value='RRC'><?php echo _("Parent");?></option>
<option value='RRP'><?php echo _("Child");?></option>
<option value='None'><?php echo _("None");?></option>
<option value='RRC'<?php if (isset($search['parent']) && $search['parent'] == 'RRC') { echo " selected='selected'"; }; echo ">" ._("Parent");?></option>
<option value='RRP'<?php if (isset($search['parent']) && $search['parent'] == 'RRP') { echo " selected='selected'"; }; echo ">" . _("Child");?></option>
<option value='None'<?php if (isset($search['parent']) && $search['parent'] == 'None') { echo " selected='selected'"; }; echo ">" . _("None");?></option>
</select>
</td>
</tr>
Expand Down

0 comments on commit 71383ed

Please sign in to comment.