Vous pouvez commenter/noter en utilisant le compte
anonymous (mot de passe:
anonymous)
You can comment/rate using the
anonymous account (password:
anonymous).
Snippets taggés : "date html"
if ($this->getRequest()->isXmlHttpRequest())
{
$this->getResponse()->addCacheControlHttpHeader('max_age=3600');
$this->response->setHttpHeader('Pragma', null, false);
$timestamp = mktime(0,0,0,date("m"),date("d")+1,date("Y"));
$this->getResponse()->setHttpHeader('Expires', $this->getResponse()->getDate($timestamp));
}