Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
83ae5b5c
Commit
83ae5b5c
authored
Jul 23, 2003
by
Dries
Browse files
- Fixed typo: implde() -> implode(). Reported by Moshe.
parent
c39562ae
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/user.module
View file @
83ae5b5c
...
...
@@ -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
}
("
.
impl
o
de
(
", "
,
$fields
)
.
") VALUES ("
.
impl
o
de
(
", "
,
$s
)
.
")"
,
$values
);
$user
=
user_load
(
array
(
"name"
=>
$array
[
"name"
]));
}
...
...
modules/user/user.module
View file @
83ae5b5c
...
...
@@ -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
}
("
.
impl
o
de
(
", "
,
$fields
)
.
") VALUES ("
.
impl
o
de
(
", "
,
$s
)
.
")"
,
$values
);
$user
=
user_load
(
array
(
"name"
=>
$array
[
"name"
]));
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment