Skip to content

Commit

Permalink
Dev Small text fix
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Feb 21, 2024
1 parent efb01ef commit 95deea5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/controllers/UserManagementController.php
Expand Up @@ -940,7 +940,7 @@ public function actionImportUsers(string $importFormat = 'csv'): string
}
/* Check permission to edit self */
if ($oUser->uid == App()->user->id) {
Yii::app()->setFlashMessage(gT("You can not use import to edit your account."), 'warning');
Yii::app()->setFlashMessage(gT("You can't use the import function to update your own account."), 'warning');
continue;
}
$oUser->full_name = $aNewUser['full_name'];
Expand Down

0 comments on commit 95deea5

Please sign in to comment.