Skip to content

Commit

Permalink
fix: corrected URL to category, closes #1731
Browse files Browse the repository at this point in the history
  • Loading branch information
thorsten committed Apr 18, 2020
1 parent 3098ac8 commit 2aa2618
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phpmyfaq/src/phpMyFAQ/Helper/CategoryHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ public function renderStartPageCategories(array $categories): string
'</a>' .
'<div class="card-body">' .
'<h4 class="card-title text-center">' .
'<a href="{{ categoryUrl }}">' . $category['name'] . '</a>' .
'<a href="' . $category['url'] . '">' . $category['name'] . '</a>' .
'</h4>' .
'<p class="card-text">' . $category['description'] . '</p>' .
'</div>' .
Expand Down

0 comments on commit 2aa2618

Please sign in to comment.