mirror of
https://github.com/holo-gfx/mangadex.git
synced 2024-11-25 00:48: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);
|