misuzu/public-legacy/settings/index.php

12 lines
166 B
PHP
Raw Normal View History

2019-06-06 20:09:27 +00:00
<?php
namespace Misuzu;
2020-05-25 19:58:06 +00:00
use Misuzu\Users\UserSession;
if(!UserSession::hasCurrent()) {
2019-06-06 20:09:27 +00:00
echo render_error(401);
return;
}
url_redirect('settings-account');