Validator, captcha, form, #16

git-svn-id: svn+ssh://code.netmonsters.ru/svn/majestic/branches/evo@141 4cb57b5f-5bbd-dd11-951b-001d605cbbc5
This commit is contained in:
pzinovkin
2010-04-26 19:56:01 +00:00
parent 64c3cace88
commit c214b75d60
19 changed files with 660 additions and 9 deletions

View File

@ -83,6 +83,7 @@ class ErrorHandler
$get = self::wrapArray(Env::Get(), 'GET');
$post = self::wrapArray(Env::Post(), 'POST');
$session = self::wrapArray(Session::get(), 'SESSION');
$files = self::wrapArray(Env::Files(), 'FILES');
$cookies = self::wrapArray(Env::Cookie(), 'COOKIE');
$server = self::wrapArray(Env::Server(), 'SERVER');
@ -174,6 +175,8 @@ class ErrorHandler
{$get}
<h3 id="post-info">POST</h3>
{$post}
<h3 id="session-info">SESSION</h3>
{$session}
<h3 id="files-info">FILES</h3>
{$files}
<h3 id="cookie-info">COOKIES</h3>