11 lines
193 B
PHP
11 lines
193 B
PHP
<?php
|
|
require_once '../../misuzu.php';
|
|
|
|
if (!user_session_active()) {
|
|
echo render_error(401);
|
|
return;
|
|
}
|
|
|
|
// do something with this page
|
|
|
|
header('Location: ' . url('settings-account'));
|