diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-28 12:09:12 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-28 12:09:12 +0000 |
commit | de791184f3d059617a72771e4143c323e7f388ee (patch) | |
tree | 463a80559d1c18948e13971c4e3212be15fe7d92 /includes | |
parent | 7a388c3f709076890982a4475a19c1f58c2990cc (diff) | |
download | brdo-de791184f3d059617a72771e4143c323e7f388ee.tar.gz brdo-de791184f3d059617a72771e4143c323e7f388ee.tar.bz2 |
#214922 by Eaton: fix code typo which prevented from image buttons in a tree form from working
Diffstat (limited to 'includes')
-rw-r--r-- | includes/form.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/form.inc b/includes/form.inc index 2f84e69d4..f12585011 100644 --- a/includes/form.inc +++ b/includes/form.inc @@ -1129,7 +1129,7 @@ function form_type_image_button_value($form, $edit = FALSE) { } return NULL; } - $post = $array[$element_name]; + $post = $post[$element_name]; } return $form['#return_value']; } |