Skip to content

Commit

Permalink
Benutzerverwaltung: Korrektur Unterscheidung ob Selbsteditierung (#3665)
Browse files Browse the repository at this point in the history
  • Loading branch information
gharlan committed May 28, 2020
1 parent 7d40eed commit accc0e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redaxo/src/addons/users/pages/users.php
Expand Up @@ -289,7 +289,7 @@
$SHOW = false;

// whether the user is editing his own account
$self = $user && $user->getId() == $user_id;
$self = $user_id == rex::getUser()->getId();

$statuschecked = '';
if ('' != $FUNC_ADD) {
Expand Down

0 comments on commit accc0e5

Please sign in to comment.