_form_get_error
- Versions
- 4.6
_form_get_error($name)
Return the error message filed against the form with the specified name.
Related topics
Code
includes/common.inc, line 1026
<?php
function _form_get_error($name) {
if (array_key_exists('form', $GLOBALS)) {
return $GLOBALS['form'][$name];
}
}
?>Login or register to post comments 