From 32b4c451e44aafed07200ca6aaed2ad0afe00167 Mon Sep 17 00:00:00 2001 From: Sarjuuk Date: Thu, 24 Mar 2022 10:37:13 +0100 Subject: [PATCH] Misc/Fixup * remove unnecessary tab components from ?unrated-comments page * fix urls generated by guides listview --- includes/types/guide.class.php | 4 +--- pages/utility.php | 18 ++---------------- 2 files changed, 3 insertions(+), 19 deletions(-) diff --git a/includes/types/guide.class.php b/includes/types/guide.class.php index 02359abe..a1957652 100644 --- a/includes/types/guide.class.php +++ b/includes/types/guide.class.php @@ -92,7 +92,7 @@ class GuideList extends BaseType 'description' => $this->getField('description'), 'sticky' => !!($this->getField('cuFlags') & CC_FLAG_STICKY), 'nvotes' => $this->getField('nvotes'), - 'url' => '/?guide=' . ($this->getField('url') ?: $this->id), + 'url' => '?guide=' . ($this->getField('url') ?: $this->id), 'status' => $this->getField('status'), 'author' => $this->getField('author'), 'authorroles' => $this->getField('roles'), @@ -103,8 +103,6 @@ class GuideList extends BaseType 'date' => $this->getField('date'), // ok 'when' => date(Util::$dateFormatInternal, $this->getField('date')) ); - - } return $data; diff --git a/pages/utility.php b/pages/utility.php index 45bce104..441ba989 100644 --- a/pages/utility.php +++ b/pages/utility.php @@ -162,22 +162,8 @@ class UtilityPage extends GenericPage break; case 'unrated-comments': - if ($_ = CommunityContent::getCommentPreviews(['unrated' => true], $nFound)) - { - $tabData = array( - 'data' => $_, - 'onBeforeCreate' => '$Listview.funcBox.beforeUserComments', - '_totalCount' => $nFound - ); - - if ($nFound > CFG_SQL_LIMIT_DEFAULT) - { - $tabData['name'] = '$LANG.tab_latestcomments'; - $tabData['note'] = '$$WH.sprintf(LANG.lvnote_usercomments, '.$nFound.')'; - } - - $this->lvTabs[] = ['commentpreview', $tabData]; - } + if ($_ = CommunityContent::getCommentPreviews(['unrated' => true])) + $this->lvTabs[] = ['commentpreview', ['data' => $_]]; $this->lvTabs[] = ['commentpreview', ['data' => []]]; break;