summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-09-13 06:44:58 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-09-13 06:44:58 +0000
commit86226679d91335a9f637205b0c21e0280f3cfe5b (patch)
treeea7ade61f75bc504b71cfa8f48cef4445c0365e2 /includes
parent7e99fdd222b50a3e833ce9fed5173f9a58e44e9e (diff)
downloadbrdo-86226679d91335a9f637205b0c21e0280f3cfe5b.tar.gz
brdo-86226679d91335a9f637205b0c21e0280f3cfe5b.tar.bz2
#763376 follow-up by andypost: Fix typo.
Diffstat (limited to 'includes')
-rw-r--r--includes/common.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc
index 71805afac..03bf41151 100644
--- a/includes/common.inc
+++ b/includes/common.inc
@@ -5692,7 +5692,7 @@ function drupal_array_set_nested_value(array &$array, array $parents, $value) {
* altered by reference:
* @code
* $key_exists = NULL;
- * $value = drupal_array_get_nested_value($form, $parents, $value_exists);
+ * $value = drupal_array_get_nested_value($form, $parents, $key_exists);
* if ($key_exists) {
* // ... do something with $value ...
* }