diff options
Diffstat (limited to 'source4/selftest/output')
-rw-r--r-- | source4/selftest/output/html.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source4/selftest/output/html.pm b/source4/selftest/output/html.pm index a88788fd14..156b5b98c7 100644 --- a/source4/selftest/output/html.pm +++ b/source4/selftest/output/html.pm @@ -283,7 +283,11 @@ sub summary($) print SUMMARY "<tr>\n"; print SUMMARY " <td><a href=\"" . $$_[0] . "\">$$_[2]</a></td>\n"; print SUMMARY " <td><a href=\"" . $$_[0] . "#$$_[1]\">$$_[1]</a></td>\n"; - print SUMMARY " <td>$$_[3]</td>\n"; + if (defined($$_[3])) { + print SUMMARY " <td>$$_[3]</td>\n"; + } else { + print SUMMARY " <td></td>\n"; + } print SUMMARY "</tr>\n"; } |