summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-08-09 10:12:14 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-08-09 10:12:14 +0000
commit22a37e6fb26e08dc63c147ec8b274478ff7d0edd (patch)
treee91347549b5cac64e077d68873e67a691b4c9727 /includes
parent1163703917828fe47dc6d51eae70a044cd38b3aa (diff)
downloadbrdo-22a37e6fb26e08dc63c147ec8b274478ff7d0edd.tar.gz
brdo-22a37e6fb26e08dc63c147ec8b274478ff7d0edd.tar.bz2
#165668 by John Morahan: fix wrong parameter passing in custom langauge addition validation
Diffstat (limited to 'includes')
-rw-r--r--includes/locale.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/locale.inc b/includes/locale.inc
index 66efadd2f..485dc841c 100644
--- a/includes/locale.inc
+++ b/includes/locale.inc
@@ -295,7 +295,7 @@ function locale_languages_predefined_form_validate($form, &$form_state) {
}
else {
// Reuse the editing form validation routine if we add a custom language.
- locale_languages_edit_form_validate($form_state['values'], $form, $form_state);
+ locale_languages_edit_form_validate($form, $form_state);
}
}