12 lines
193 B
PHP
12 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'));
|