form_get_errors
- Versions
- 4.6 – 7
form_get_errors()
Return an associative array of all errors.
Related topics
Code
includes/common.inc, line 1017
<?php
function form_get_errors() {
if (array_key_exists('form', $GLOBALS)) {
return $GLOBALS['form'];
}
}
?>Login or register to post comments 