misuzu/public-legacy/manage/changelog/tags.php

10 lines
238 B
PHP
Raw Normal View History

2022-09-13 13:14:49 +00:00
<?php
namespace Misuzu;
if(!$msz->getAuthInfo()->getPerms('global')->check(Perm::G_CL_TAGS_MANAGE))
Template::throwError(403);
2022-09-13 13:14:49 +00:00
Template::render('manage.changelog.tags', [
'changelog_tags' => $msz->getChangelog()->getTags(),
2022-09-13 13:14:49 +00:00
]);