Remove no longer needed ID on issue div tag

This commit is contained in:
Junior 2023-08-18 15:26:09 -04:00
parent 0c665a4911
commit eb6fc55f3a

View File

@ -176,7 +176,7 @@ for ( $i=1; $i<=$total; $i++ ) {
if ( in_array($items[$i-1], $issues) ) $classmod=" readborder"; if ( in_array($items[$i-1], $issues) ) $classmod=" readborder";
$relcomic = trim(base64_encode($compath . "/" . $items[$i-1]), "="); $relcomic = trim(base64_encode($compath . "/" . $items[$i-1]), "=");
$thumburl = htmlentities($thumb, ENT_QUOTES); $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 "<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"; echo "<a href='downloadcomic.php?comic={$relcomic}'>{$comname}</a></div>\n";
} }