add border botton to contentHeading

This commit is contained in:
Uwe Steinmann 2021-05-04 13:17:07 +02:00
parent 4cb9ed294e
commit d3958e73f9

View File

@ -1005,9 +1005,9 @@ background-image: linear-gradient(to bottom, #882222, #111111);;
function contentHeading($heading, $noescape=false) { /* {{{ */
if($noescape)
echo "<legend>".$heading."</legend>\n";
echo "<legend class=\"border-bottom\">".$heading."</legend>\n";
else
echo "<legend>".htmlspecialchars($heading)."</legend>\n";
echo "<legend class=\"border-bottom\">".htmlspecialchars($heading)."</legend>\n";
return;
} /* }}} */