#180063 by andremolnar, TheMystic, and R.Muilwijk: Add a parameter to form_set_error().

merge-requests/26/head
Angie Byron 2008-09-19 02:37:29 +00:00
parent 7952a651ce
commit 1e8ee589bb
1 changed files with 6 additions and 1 deletions

View File

@ -777,12 +777,17 @@ function form_execute_handlers($type, &$form, &$form_state) {
* element where the #parents array starts with 'foo'.
* @param $message
* The error message to present to the user.
* @param $reset
* Reset the form errors static cache.
* @return
* Never use the return value of this function, use form_get_errors and
* form_get_error instead.
*/
function form_set_error($name = NULL, $message = '') {
function form_set_error($name = NULL, $message = '', $reset = FALSE) {
static $form = array();
if ($reset) {
$form = array();
}
if (isset($name) && !isset($form[$name])) {
$form[$name] = $message;
if ($message) {