Преглед на файлове

Update AccountController, prevent blocking admins

Daniel Supernault преди 5 години
родител
ревизия
2c440b4882
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      app/Http/Controllers/AccountController.php

+ 1 - 1
app/Http/Controllers/AccountController.php

@@ -244,7 +244,7 @@ class AccountController extends Controller
 		switch ($type) {
 			case 'user':
 			$profile = Profile::findOrFail($item);
-			if ($profile->id == $user->id) {
+			if ($profile->id == $user->id || $profile->user->is_admin == true) {
 				return abort(403);
 			}
 			$class = get_class($profile);