Fix missing pipe in ports page menu (#10025)

The ports page has a missing pipe in the menu between 'Update URL' and 'Search'.
This commit is contained in:
JoshWeepie
2019-03-25 16:34:24 -05:00
committed by PipoCanaja
parent 8f718f5c78
commit 9037c0736d

View File

@@ -61,7 +61,7 @@ foreach ($menu_options as $option => $text) {
}
$displayLists .= '<div style="float: right;">';
$displayLists .= '<a href="csv.php/report=' . generate_url($vars, array('format' => '')) . '" title="Export as CSV" target="_blank" rel="noopener">Export CSV</a> | <a href="' . generate_url($vars) . '" title="Update the browser URL to reflect the search criteria.">Update URL</a>';
$displayLists .= '<a href="csv.php/report=' . generate_url($vars, array('format' => '')) . '" title="Export as CSV" target="_blank" rel="noopener">Export CSV</a> | <a href="' . generate_url($vars) . '" title="Update the browser URL to reflect the search criteria.">Update URL</a> | ';
if (isset($vars['searchbar']) && $vars['searchbar'] == "hide") {
$displayLists .= '<a href="' . generate_url($vars, array('searchbar' => '')) . '">Search</a>';