- Fixed typo: implde() -> implode(). Reported by Moshe.

4.3.x
Dries Buytaert 2003-07-23 05:16:10 +00:00
parent c39562ae03
commit 83ae5b5c36
2 changed files with 2 additions and 2 deletions

View File

@ -141,7 +141,7 @@ function user_save($account, $array = array()) {
$values[] = serialize($data);
$s[] = "'%s'";
db_query("INSERT INTO {users} (". implde(", ", $fields) .") VALUES (". implde(", ", $s) .")", $values);
db_query("INSERT INTO {users} (". implode(", ", $fields) .") VALUES (". implode(", ", $s) .")", $values);
$user = user_load(array("name" => $array["name"]));
}

View File

@ -141,7 +141,7 @@ function user_save($account, $array = array()) {
$values[] = serialize($data);
$s[] = "'%s'";
db_query("INSERT INTO {users} (". implde(", ", $fields) .") VALUES (". implde(", ", $s) .")", $values);
db_query("INSERT INTO {users} (". implode(", ", $fields) .") VALUES (". implode(", ", $s) .")", $values);
$user = user_load(array("name" => $array["name"]));
}