fixes
This commit is contained in:
@@ -121,7 +121,9 @@ class LDAP extends Espo
|
||||
}
|
||||
}
|
||||
|
||||
if (!$password || $username == '**logout') return;
|
||||
if (!$password || $username == '**logout') {
|
||||
return Result::fail();
|
||||
}
|
||||
|
||||
if ($isPortal) {
|
||||
$useLdapAuthForPortalUser = $this->utils->getOption('portalUserLdapAuth');
|
||||
|
||||
@@ -31,10 +31,15 @@ namespace Espo\Core\ORM;
|
||||
|
||||
use Espo\Core\Interfaces\Injectable;
|
||||
|
||||
use Espo\ORM\EntityFactory;
|
||||
use Espo\ORM\{
|
||||
EntityFactory,
|
||||
Repository\RDBRepository as RDBRepository,
|
||||
};
|
||||
|
||||
/** @deprecated */
|
||||
abstract class Repository extends \Espo\ORM\Repository implements Injectable
|
||||
/**
|
||||
* @deprecated
|
||||
*/
|
||||
abstract class Repository extends RDBRepository implements Injectable
|
||||
{
|
||||
protected $dependencyList = [];
|
||||
|
||||
|
||||
@@ -32,7 +32,7 @@ namespace Espo\ORM\DB\Query;
|
||||
/**
|
||||
* @deprecated
|
||||
*/
|
||||
abstract class Base extends Espo\ORM\QueryComposer\BaseQueryComposer
|
||||
abstract class Base extends \Espo\ORM\QueryComposer\BaseQueryComposer
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user