Skip to content

Commit

Permalink
Fix commit 49c05f2 which introduced a regression
Browse files Browse the repository at this point in the history
That HR should be in the HTML version only.

Spotted by: feld
  • Loading branch information
dlangille committed Aug 13, 2019
1 parent 5092fef commit ffc6260
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion www/search.php
Original file line number Diff line number Diff line change
Expand Up @@ -1069,7 +1069,9 @@ function setfocus() { document.search.query.focus(); }
$HTML .= $port_display->DisplayPlainText() . "\n";
break;
} // switch
$HTML .= '<hr width="100%">';
if ($output_format == OUTPUT_FORMAT_HTML) {
$HTML .= '<hr width="100%">';
}
} // for

if ($output_format == OUTPUT_FORMAT_HTML) {
Expand Down

0 comments on commit ffc6260

Please sign in to comment.