mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-10 07:21:04 +01:00
trying to solve auth problems from non-sql
This commit is contained in:
parent
3df6699a06
commit
554e82ea12
@ -178,18 +178,6 @@
|
|||||||
Header("Location: " . $phpgw->link($phpgw_info["server"]["webserver_url"] . "/login.php", "cd=10"));
|
Header("Location: " . $phpgw->link($phpgw_info["server"]["webserver_url"] . "/login.php", "cd=10"));
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
$this->auth = new auth;
|
|
||||||
}else{
|
|
||||||
$this->auth = new auth;
|
|
||||||
$this->session = new sessions;
|
|
||||||
}
|
|
||||||
$this->translation = new translation;
|
|
||||||
$this->common = new common;
|
|
||||||
$this->accounts = new accounts;
|
|
||||||
$this->preferences = new preferences;
|
|
||||||
$this->acl = new acl;
|
|
||||||
$this->hooks = new hooks;
|
|
||||||
|
|
||||||
/* Load selected authentication class */
|
/* Load selected authentication class */
|
||||||
if (empty($phpgw_info["server"]["auth_type"])){$phpgw_info["server"]["auth_type"] = "sql";}
|
if (empty($phpgw_info["server"]["auth_type"])){$phpgw_info["server"]["auth_type"] = "sql";}
|
||||||
include($phpgw_info["server"]["api_inc"] . "/phpgw_auth_".$phpgw_info["server"]["auth_type"].".inc.php");
|
include($phpgw_info["server"]["api_inc"] . "/phpgw_auth_".$phpgw_info["server"]["auth_type"].".inc.php");
|
||||||
@ -198,6 +186,26 @@
|
|||||||
if (empty($phpgw_info["server"]["account_repository"])){$phpgw_info["server"]["account_repository"] = $phpgw_info["server"]["auth_type"];}
|
if (empty($phpgw_info["server"]["account_repository"])){$phpgw_info["server"]["account_repository"] = $phpgw_info["server"]["auth_type"];}
|
||||||
include($phpgw_info["server"]["api_inc"] . "/phpgw_accounts_".$phpgw_info["server"]["account_repository"].".inc.php");
|
include($phpgw_info["server"]["api_inc"] . "/phpgw_accounts_".$phpgw_info["server"]["account_repository"].".inc.php");
|
||||||
include($phpgw_info["server"]["api_inc"] . "/phpgw_accounts_shared.inc.php");
|
include($phpgw_info["server"]["api_inc"] . "/phpgw_accounts_shared.inc.php");
|
||||||
|
$this->auth = new auth;
|
||||||
|
|
||||||
|
}else{
|
||||||
|
$this->auth = new auth;
|
||||||
|
$this->session = new sessions;
|
||||||
|
/* Load selected authentication class */
|
||||||
|
if (empty($phpgw_info["server"]["auth_type"])){$phpgw_info["server"]["auth_type"] = "sql";}
|
||||||
|
include($phpgw_info["server"]["api_inc"] . "/phpgw_auth_".$phpgw_info["server"]["auth_type"].".inc.php");
|
||||||
|
|
||||||
|
/* Load selected accounts class */
|
||||||
|
if (empty($phpgw_info["server"]["account_repository"])){$phpgw_info["server"]["account_repository"] = $phpgw_info["server"]["auth_type"];}
|
||||||
|
include($phpgw_info["server"]["api_inc"] . "/phpgw_accounts_".$phpgw_info["server"]["account_repository"].".inc.php");
|
||||||
|
include($phpgw_info["server"]["api_inc"] . "/phpgw_accounts_shared.inc.php");
|
||||||
|
}
|
||||||
|
$this->translation = new translation;
|
||||||
|
$this->common = new common;
|
||||||
|
$this->accounts = new accounts;
|
||||||
|
$this->preferences = new preferences;
|
||||||
|
$this->acl = new acl;
|
||||||
|
$this->hooks = new hooks;
|
||||||
|
|
||||||
$sep = filesystem_separator();
|
$sep = filesystem_separator();
|
||||||
$template_root = $this->common->get_tpl_dir();
|
$template_root = $this->common->get_tpl_dir();
|
||||||
|
Loading…
Reference in New Issue
Block a user