Skip to content
Snippets Groups Projects
Commit b5467129 authored by David Siegfried's avatar David Siegfried
Browse files

fixes #2711

Closes #2711

Merge request studip/studip!1829
parent f16fd515
No related branches found
No related tags found
No related merge requests found
......@@ -1237,9 +1237,9 @@ class Course_MembersController extends AuthenticatedController
count($msg['success'])),
count($msg['success']) <= 5 ? $msg['success'] : []);
}
if (count($msg['errors'])) {
if (count($msg['error'])) {
PageLayout::postError(sprintf(_('%s Person(en) konnten nicht auf die Warteliste verschoben werden.'),
count($msg['errors'])),
count($msg['error'])),
count($msg['error']) <= 5 ? $msg['error'] : []);
}
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment