diff options
| author | lsces <lester@lsces.co.uk> | 2026-04-19 19:13:03 +0100 |
|---|---|---|
| committer | lsces <lester@lsces.co.uk> | 2026-04-19 19:13:03 +0100 |
| commit | 8e8281376d9c5e2d9b8fc428a27721c0d406ea59 (patch) | |
| tree | 6c481a0bb750f81b14c560c37245506b25d3094d /includes | |
| parent | 7e1dbf3a0ff3b84d1c5d84aee94f11e05434a126 (diff) | |
| download | users-8e8281376d9c5e2d9b8fc428a27721c0d406ea59.tar.gz users-8e8281376d9c5e2d9b8fc428a27721c0d406ea59.tar.bz2 users-8e8281376d9c5e2d9b8fc428a27721c0d406ea59.zip | |
Namesspace tidies for general authentication functions
Diffstat (limited to 'includes')
| -rwxr-xr-x | includes/classes/BaseAuth.php | 2 | ||||
| -rwxr-xr-x | includes/register_inc.php | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/includes/classes/BaseAuth.php b/includes/classes/BaseAuth.php index dfea52e..11fc29e 100755 --- a/includes/classes/BaseAuth.php +++ b/includes/classes/BaseAuth.php @@ -177,7 +177,7 @@ class BaseAuth { } elseif (!empty($pAuthMixed)) { $authPlugin=BaseAuth::getAuthMethod( $pAuthMixed ); if (file_exists( $authPlugin['file'] )) { -// require_once $authPlugin['file']; + require_once $authPlugin['file']; $cl = $authPlugin['class']; $instance = new $cl(); if( $instance->isSupported() ) { diff --git a/includes/register_inc.php b/includes/register_inc.php index 6d8c338..903e921 100755 --- a/includes/register_inc.php +++ b/includes/register_inc.php @@ -3,6 +3,7 @@ use Bitweaver\HttpStatusCodes; use Bitweaver\KernelTools; use Bitweaver\Wiki\BitPage; +use Bitweaver\Users\RolePermUser; // Register the new user $userClass = $gBitSystem->getConfig( 'user_class', 'RolePermUser' ); |
