Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Tenzing
/
Tz Tools
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
7cbea250
authored
2010-11-22 17:14:35 +0000
by
Chris Boden
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Possible bug fix on create user
1 parent
bb4975b4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
wp_functions.php
wp_functions.php
View file @
7cbea25
...
...
@@ -173,7 +173,8 @@ function _set_auth_cookie() {
function
_create_user
()
{
$params
=
func_get_args
();
return
call_user_func_array
(
'wpmu'
.
__FUNCTION__
,
$params
);
$prefix
=
(
function_exists
(
'wpmu'
.
__FUNCTION__
)
?
'wpmu'
:
'wp'
);
return
call_user_func_array
(
$prefix
.
__FUNCTION__
,
$params
);
}
function
_nav_menu
()
{
...
...
Please
register
or
sign in
to post a comment