Merge remote-tracking branch 'origin/develop' into 2.0

This commit is contained in:
snipe
2015-06-30 22:42:00 -07:00
10 changed files with 85 additions and 60 deletions
+5 -6
View File
@@ -246,6 +246,11 @@ class UsersController extends AdminController
$this->decodePermissions($permissions);
app('request')->request->set('permissions', $permissions);
// Only update the email address if locking is set to false
if (Config::get('app.lock_passwords')) {
return Redirect::route('users')->with('error', 'Denied! You cannot update user information on the demo.');
}
try {
// Get the user information
$user = Sentry::getUserProvider()->findById($id);
@@ -278,11 +283,6 @@ class UsersController extends AdminController
return Redirect::back()->withInput()->withErrors($validator);
}
// Only update the email address if locking is set to false
if (!Config::get('app.lock_passwords')) {
$user->email = Input::get('email');
}
try {
// Update the user
$user->first_name = Input::get('first_name');
@@ -326,7 +326,6 @@ class UsersController extends AdminController
// Assign the user to groups
foreach ($groupsToAdd as $groupId) {
$group = Sentry::getGroupProvider()->findById($groupId);
$user->addGroup($group);
}