add addPost (from Request.php)

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7456 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
haneul 2010-05-13 07:24:12 +00:00
parent c7e0993d29
commit 8648178518

View file

@ -44,6 +44,12 @@ class HTTP_Request extends HTTP_Request2
return $this->response->getCookies(); return $this->response->getCookies();
} }
} }
public function addPostData($name, $value, $preencoded = false)
{
$this->addPostParameter($name, $value);
}
} }
?> ?>