?>
</th><th><?php 
        echo $loc->getText('function');
        ?>
</th></tr>
<?php 
        $bl = new BulkLookupQuery();
        // Paging
        $total = $bl->countQueue('cover_list');
        $limit = 50;
        if (0 + $_GET['page'] < 1 || ($p - 1) * $limit >= $total) {
            $p = 1;
        } else {
            $p = 0 + $_GET['page'];
        }
        $bl->getNoCoverList($limit, ($p - 1) * $limit);
        $rows = array();
        while ($row = $bl->fetch()) {
            $rows[] = $row;
        }
        if (count($rows) < 1) {
            echo "<tr><td colspan=\"7\" class=\"primary\">" . $loc->getText('bulkReportAllCovered') . "</td></tr>";
        }
        foreach ($rows as $row) {
            echo "<tr>" . "  <td class=\"primary center\">{$row['bibid']}</td>" . "  <td class=\"primary\">{$row['title']}</td>" . "  <td class=\"primary\">" . "    <a href=\"../catalog/biblio_edit.php?bibid={$row['bibid']}\">" . $loc->getText('edit') . "</a>" . "  </td>" . "</tr>";
        }
        ?>
</table>
<?php 
        // Paging link
        if ($p > 1) {