This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
misuzu-interim/public-legacy/settings/index.php

12 lines
166 B
PHP
Raw Normal View History

2022-09-13 15:14:49 +02:00
<?php
namespace Misuzu;
use Misuzu\Users\UserSession;
if(!UserSession::hasCurrent()) {
echo render_error(401);
return;
}
url_redirect('settings-account');