Merge branch 'develop'

# Conflicts:
#	config/version.php
This commit is contained in:
snipe 2018-07-19 14:47:27 -07:00
commit aa9c0078a1
2 changed files with 5 additions and 5 deletions

View file

@ -97,7 +97,7 @@ class LoginController extends Controller
}
// Check if the user already exists in the database and was imported via LDAP
$user = User::where('username', '=', Input::get('username'))->whereNull('deleted_at')->where('ldap_import', '=', 1)->where('active', '=', '1')->first();
$user = User::where('username', '=', Input::get('username'))->whereNull('deleted_at')->where('ldap_import', '=', 1)->where('activated', '=', '1')->first();
LOG::debug("Local auth lookup complete");
// The user does not exist in the database. Try to get them from LDAP.

View file

@ -1,10 +1,10 @@
<?php
return array (
'app_version' => 'v4.6.1',
'full_app_version' => 'v4.6.1 - build 3842-gbbb15d610',
'build_version' => '3842',
'app_version' => 'v4.6.2',
'full_app_version' => 'v4.6.2 - build 3844-',
'build_version' => '3844',
'prerelease_version' => '',
'hash_version' => 'gbbb15d610',
'full_hash' => 'v4.6.0-10-gbbb15d610',
'full_hash' => 'v4.6.2-10-gbbb15d610',
'branch' => 'master',
);