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
e51f3767
authored
2010-11-22 16:34:11 +0000
by
Chris Boden
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Added signup table if missing
1 parent
d8c319ff
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
com/Auth/Auth.php
com/Auth/Auth.php
View file @
e51f376
...
...
@@ -23,6 +23,11 @@ const ACTION_ACTIVATE = 'wpmu_activate_user';
const
OPTION_NAME
=
'tz_auth'
;
// Database lookup key (`wp_options`.`option_name`)
call_user_func
(
function
()
{
global
$wpdb
;
if
(
empty
(
$wpdb
->
signups
))
{
$wpdb
->
signups
=
$wpdb
->
prefix
.
'signups'
;
}
Vars
::
$options
=
new
Tools\WP_Option
(
OPTION_NAME
);
if
(
is_admin
())
{
...
...
Please
register
or
sign in
to post a comment