Skip to content
Snippets Groups Projects
Commit 7feed072 authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms Committed by David Siegfried
Browse files

fixes #4234

Closes #4234

Merge request studip/studip!3067
parent cb113936
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,7 @@ class ConsultationBlock extends SimpleORMap implements PrivacyObject
if ($block->range instanceof User) {
return $block->range->getFullName() . ' <' . $block->range->email . '>';
}
if ($block->range instanceof Course || $block->range instanceof Institute) {
if ($block->range instanceof Course) {
return sprintf(_('Veranstaltung: %s'), $block->range->getFullName());
}
......
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