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

12 lines
251 B
PHP
Raw Normal View History

2022-09-13 13:14:49 +00:00
<?php
namespace Misuzu;
2023-08-30 22:37:21 +00:00
if(!$msz->getAuthInfo()->getPerms('global')->check(Perm::G_CL_TAGS_MANAGE)) {
2022-09-13 13:14:49 +00:00
echo render_error(403);
return;
}
Template::render('manage.changelog.tags', [
'changelog_tags' => $msz->getChangelog()->getTags(),
2022-09-13 13:14:49 +00:00
]);