check for a post

This commit is contained in:
Evan Prodromou 2010-10-24 15:04:12 -04:00
parent 1545c1228b
commit 69a1ecec9b
1 changed files with 11 additions and 0 deletions

View File

@ -1354,4 +1354,15 @@ class Action extends HTMLOutputter // lawsuit
$this->clientError(_('There was a problem with your session token.'));
}
}
/**
* Check if the current request is a POST
*
* @return boolean true if POST; otherwise false.
*/
function isPost()
{
return ($_SERVER['REQUEST_METHOD'] == 'POST');
}
}