<?php
define('DIR', dirname(__FILE__));
include_once(DIR.'/core/Base.php');
class Page extends Base
{
protected function _before() {
parent::_before();
$this->_al = true;
}
protected function act_index() {
if(md5('info&'.Cur::get('id')) === $_POST['hash'])
$this->mUser->editStatus($_POST['oid'], $_POST['info']);
}
} Loader::init(__FILE__);