Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
#564 Fix default filter for service by servicegroup
Browse files Browse the repository at this point in the history
  • Loading branch information
kduret committed Sep 17, 2015
1 parent 0e57134 commit d1c094d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
*/
$query = "SELECT DISTINCT sg.sg_name FROM servicegroup sg";
$DBRESULT = $pearDB->query($query);
$sgSearchSelect = '<select id="sg_search" name="sg_search"><option value="">'. _("Select a servicegroup") . '</option>';
$sgSearchSelect = '<select id="sg_search" name="sg_search"><option value=""></option>';
while ($row = $DBRESULT->fetchRow()) {
$sgSearchSelect .= '<option value="' . $row['sg_name'] . '">' . $row['sg_name'] .'</option>';
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
*/
$query = "SELECT DISTINCT sg.sg_name FROM servicegroup sg";
$DBRESULT = $pearDB->query($query);
$sgSearchSelect = '<select id="sg_search" name="sg_search"><option value="">'. _("Select a servicegroup") . '</option>';
$sgSearchSelect = '<select id="sg_search" name="sg_search"><option value=""></option>';
while ($row = $DBRESULT->fetchRow()) {
$sgSearchSelect .= '<option value="' . $row['sg_name'] . '">' . $row['sg_name'] .'</option>';
}
Expand Down

0 comments on commit d1c094d

Please sign in to comment.