Skip to content

Commit 544e626

Browse files
committed
Fix #89
1 parent 22beb1a commit 544e626

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Report.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,9 @@ public function displayReport(&$result, $Addressing, $values, $ping_status = [])
185185
// $row_num = 1;
186186

187187
// Column headers
188-
$html_output .= $output::showHeader($end_display - $start + 1, $nbcols);
189-
188+
if ($is_html_output) {
189+
$html_output .= $output::showHeader($end_display - $start + 1, $nbcols);
190+
}
190191
if (!$is_html_output) {
191192
$headers[] = __('IP');
192193
$headers[] = __('Connected to');

0 commit comments

Comments
 (0)