mirror of
https://github.com/holo-gfx/mangadex.git
synced 2024-11-25 00:18:20 -05:00
6 lines
172 B
PHP
6 lines
172 B
PHP
|
<?php
|
||
|
|
||
|
$staffUsers = new Users(['is_staff' => 1]);
|
||
|
|
||
|
$page_html = parse_template('about', ['users' => $staffUsers->query_read('level_id DESC, users.user_id ASC', 100, 1)]);
|