Файл: EasyHost v2.0/system/htdocs/admin/restrictions/password.pl
Строк: 16
<?php
$system->error('This feature has been disabled in demo mode') if $system->config('demo');
$system->error('The old password you entered is incorrect') if ($system->param('password_old') ne $system->service->config('password'));
$system->error('The new password field is required') if (!$system->param('password'));
$system->error('The new passwords you entered doesn't match') if ($system->param('password') ne $system->param('password2'));
$system->db->do('REPLACE INTO config VALUES (?,?)',undef,'password',$system->param('password'));
$system->redirect('finish');
?>