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
6dbd4043
authored
2010-03-22 20:42:31 +0000
by
Chris Boden
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Added wp_insert_user function
1 parent
3695ef5c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
com/ClientSettings/ClientSettings.php
wp_functions.php
com/ClientSettings/ClientSettings.php
View file @
6dbd404
...
...
@@ -17,7 +17,6 @@ class ClientSettings {
}
public
static
function
viewOptionsPage
()
{
}
}
...
...
wp_functions.php
View file @
6dbd404
...
...
@@ -133,4 +133,9 @@ function _is_post_revision() {
$params
=
func_get_args
();
return
call_user_func_array
(
'wp'
.
__FUNCTION__
,
$params
);
}
function
_insert_user
()
{
$params
=
func_get_args
();
return
call_user_func_array
(
'wp'
.
__FUNCTION__
,
$params
);
}
?>
...
...
Please
register
or
sign in
to post a comment