mirror of
https://github.com/holo-gfx/mangadex.git
synced 2024-11-24 22:38:20 -05:00
8 lines
190 B
PHP
8 lines
190 B
PHP
<?php
|
|
$templateVars = [
|
|
//'mode' => $mode,
|
|
'mode' => 'history',
|
|
'chapter_history' => $user->get_reading_history(),
|
|
];
|
|
$page_html = parse_template('user/history', $templateVars);
|