Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/vanilla/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
0 => 'staticcontent/container',
1 => 'Internal',
);
$Configuration['Routes']['DefaultController'] = 'discussions';
$Configuration['Routes']['DefaultController'] = 'categories';
$Configuration['Routes']['XmZpbGVzdGFjaygvLiopPyQ='] = array (
0 => 'vanilla/filestack$1',
1 => 'Internal',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,9 +183,6 @@ function writeListItem($category, $depth) {
Gdn::controller()->fireEvent('AfterCategoryTitle');
?>
</div>
<div class="CategoryDescription">
<?php echo val('Description', $category) ?>
</div>
<div class="Challenge">
<?php
Gdn::controller()->fireEvent('AfterChallenge', ['Category' =>$category]);
Expand Down
4 changes: 2 additions & 2 deletions vanilla/applications/vanilla/views/discussions/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
watchButton($this->data('Category.CategoryID')).
'</h1>';

$Description = $this->data('Category.Description', $this->description());
echo wrapIf(Gdn_Format::htmlFilter($Description), 'div', ['class' => 'P PageDescription']);
// $Description = $this->data('Category.Description', $this->description());
// echo wrapIf(Gdn_Format::htmlFilter($Description), 'div', ['class' => 'P PageDescription']);

$this->fireEvent('AfterPageTitle');

Expand Down