diff options
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -130,14 +130,18 @@ li:target { ?> </ol> <?php - if ($depth > $more && $depth <= $max_more) { + $first_more = TRUE; + while ($depth <= $max_more) { ?> <a<?=$anchor?> class="more" href="?<?=http_build_query([ 'idx' => index_name($selected_index), 'q' => $q, 'more' => $depth, - ])?>#more">MORE</a> + ])?><?= $first_more ? "#more" : "" ?>"><?= $first_more ? "MORE" : $depth ?></a> <?php + $anchor = ""; + $depth++; + $first_more = FALSE; } } else { ?> |