diff --git a/webapp_calendar.py b/webapp_calendar.py index 89da70f61..56ea86e5f 100644 --- a/webapp_calendar.py +++ b/webapp_calendar.py @@ -158,13 +158,15 @@ def _htmlCalendarDay(personCache: {}, cssCache: {}, translate: {}, '' + \ dispName + ': ' if ev.get('name'): - eventDescription = senderName + ev['name'].strip() + eventDescription = ev['name'].strip() elif ev['type'] == 'Place': if ev.get('name'): eventPlace = ev['name'] + # prepend a link to the sender of the calendar item if senderName and eventDescription: eventDescription = senderName + eventDescription + deleteButtonStr = '' if postId: deleteButtonStr = \