Fix per installazione iniziale
This commit is contained in:
parent
14f3ef9556
commit
992d0bc57e
|
@ -24,6 +24,13 @@ use Carbon\Carbon;
|
|||
|
||||
$op = filter('op');
|
||||
|
||||
$microsoft = null;
|
||||
|
||||
if ($dbo->isConnected() && $dbo->isInstalled()) {
|
||||
$microsoft = $dbo->selectOne('zz_oauth2', '*', ['nome' => 'Microsoft', 'enabled' => 1, 'is_login' => 1]);
|
||||
}
|
||||
|
||||
|
||||
// LOGIN
|
||||
switch ($op) {
|
||||
case 'login':
|
||||
|
@ -162,8 +169,6 @@ if (isset($username)) {
|
|||
echo ' value="'.$username.'"';
|
||||
}
|
||||
|
||||
$microsoft = $dbo->selectOne('zz_oauth2', '*', ['nome' => 'Microsoft', 'enabled' => 1, 'is_login' => 1]);
|
||||
|
||||
echo ' required>
|
||||
<span class="form-control-feedback"><i class="fa fa-user"></i> </span>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue