Update category names display

This commit is contained in:
DariusIII
2018-05-14 23:57:43 +02:00
parent 01ed0cace8
commit 1c8d777c99
5 changed files with 9 additions and 6 deletions
+1 -2
View File
@@ -21,7 +21,6 @@ class ConsoleController extends BasePageController
if ($id === 'WiiVare') {
$id = 'WiiVareVC';
}
$id = str_slug($id);
$console = new Console(['Settings' => $this->settings]);
$gen = new Genres(['Settings' => $this->settings]);
@@ -31,7 +30,7 @@ class ConsoleController extends BasePageController
$ctmp[] =
[
'id' => $ccat->id,
'title' => str_slug($ccat->title),
'title' => $ccat->title,
];
}
$category = Category::GAME_ROOT;