diff options
Diffstat (limited to 'web/template')
-rw-r--r-- | web/template/pkg_comments.php | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/web/template/pkg_comments.php b/web/template/pkg_comments.php index 7c42ac1..02171a0 100644 --- a/web/template/pkg_comments.php +++ b/web/template/pkg_comments.php @@ -24,5 +24,15 @@ while (list($indx, $carr) = each($comments)) { ?> </div> </blockquote> <?php -} ?> +} +?> </div> + +<?php +$count = package_comments_count($_GET['ID']); +if ($count > 10 && !isset($_GET['comments'])) { + echo '<div class="pgbox">'; + echo '<a href="'. $_SERVER['PHP_SELF'] . '?ID=' . $_REQUEST['ID'] . '&comments=all">'. __('Show all %s comments', $count) . '</a>'; + echo '</div>'; +} +?> |