diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-11-13 10:21:50 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-11-13 10:21:50 +0000 |
commit | a6ae1c6cfa0af4fa9a39334625947f7c8c904e1e (patch) | |
tree | 522e8c92f1f6be629ace208421b08248992d42df /modules/system | |
parent | 85161f230f0f1b8a409b39a47ee346f6bd60a33a (diff) | |
download | brdo-a6ae1c6cfa0af4fa9a39334625947f7c8c904e1e.tar.gz brdo-a6ae1c6cfa0af4fa9a39334625947f7c8c904e1e.tar.bz2 |
- Patch #530652 by sun: _user_password_dynamic_validation() should be a #process of password_confirm().
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index e510cb431..228ffd050 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -368,7 +368,7 @@ function system_element_info() { ); $types['password_confirm'] = array( '#input' => TRUE, - '#process' => array('form_process_password_confirm'), + '#process' => array('form_process_password_confirm', 'user_form_process_password_confirm'), '#theme_wrappers' => array('form_element'), ); $types['textarea'] = array( |