diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-16 10:37:30 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2008-01-16 10:37:30 +0000 |
commit | f16986574a592af2a3a1cda7c77d3b562aa65d66 (patch) | |
tree | 146e945d945233a3bc2f5dcd5853c7bf27c4bbc7 /includes/common.inc | |
parent | 8cc5f17b58e60c236bacfd077fb431ab03eab565 (diff) | |
download | brdo-f16986574a592af2a3a1cda7c77d3b562aa65d66.tar.gz brdo-f16986574a592af2a3a1cda7c77d3b562aa65d66.tar.bz2 |
#209077 by bec: missing initialization for the placeholders array in drupal_write_record()
Diffstat (limited to 'includes/common.inc')
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc index f3c915425..34758a397 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -3246,7 +3246,7 @@ function drupal_write_record($table, &$object, $update = array()) { return FALSE; } - $fields = $defs = $values = $serials = array(); + $fields = $defs = $values = $serials = $placeholders = array(); // Go through our schema, build SQL, and when inserting, fill in defaults for // fields that are not set. |