Compare commits

...

2 Commits

Author SHA1 Message Date
eb6fc55f3a Remove no longer needed ID on issue div tag 2023-08-18 15:26:09 -04:00
0c665a4911 Add missing closing div tag for debug div 2023-08-18 15:17:10 -04:00

View File

@ -176,7 +176,7 @@ for ( $i=1; $i<=$total; $i++ ) {
if ( in_array($items[$i-1], $issues) ) $classmod=" readborder";
$relcomic = trim(base64_encode($compath . "/" . $items[$i-1]), "=");
$thumburl = htmlentities($thumb, ENT_QUOTES);
echo "<div class='item{$classmod}' id='", $relcomic, "'>";
echo "<div class='item{$classmod}'>";
echo "<img class='issue' data-relcomic=\"{$relcomic}\" data-comname=\"" . htmlspecialchars($comname, ENT_QUOTES) . "\" border=0 src='$thumburl'><br clear=all />";
echo "<a href='downloadcomic.php?comic={$relcomic}'>{$comname}</a></div>\n";
}
@ -184,7 +184,7 @@ for ( $i=1; $i<=$total; $i++ ) {
$htime = microtime_float() - $htime;
?>
<!-- </div> -->
<div id='debug' class='debug'>
<div id='debug' class='debug'></div>
</div>
</body>