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

fix weird bug that won't display the schedule title correctly, fixes #2624

Closes #2624

Merge request studip/studip!1773
parent 15deebd3
No related branches found
No related tags found
No related merge requests found
......@@ -120,7 +120,7 @@ class CronjobSchedule extends SimpleORMap
*/
public function getTitle()
{
return $this->content['title'] ?: $this->task->name ?? '';
return ($this->content['title'] ?: $this->task->name) ?? '';
}
protected function cbJsonifyParameters($type)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment