mirror of https://github.com/movim/movim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
373 B
18 lines
373 B
<?php
|
|
use Movim\Controller\Base;
|
|
|
|
class AccountController extends Base
|
|
{
|
|
function load()
|
|
{
|
|
$this->session_only = false;
|
|
}
|
|
|
|
function dispatch()
|
|
{
|
|
$session = \Sessionx::start();
|
|
requestURL('http://localhost:1560/disconnect/', 2, ['sid' => $session->sessionid]);
|
|
|
|
$this->page->setTitle(__('page.account_creation'));
|
|
}
|
|
}
|