Removes reassignment of $base_id in web/template/pkg_comments.php as it is assigned in both pkgbase_display_details() and pkg_display_details(). Signed-off-by: Mark Weiman <mark.weiman@markzz.com> --- web/template/pkg_comments.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/web/template/pkg_comments.php b/web/template/pkg_comments.php index 21ce16f..15547ce 100644 --- a/web/template/pkg_comments.php +++ b/web/template/pkg_comments.php @@ -1,11 +1,4 @@ <?php -if (isset($row['BaseID'])) { - /* On a package details page. */ - $base_id = $row['BaseID']; -} else { - /* On a package base details page. */ - $base_id = $row['ID']; -} $include_deleted = has_credential(CRED_COMMENT_VIEW_DELETED); $count = pkgbase_comments_count($base_id, $include_deleted); ?> -- 2.6.4