diff --git a/calendar/inc/class.bocalendar.inc.php b/calendar/inc/class.bocalendar.inc.php index 78b0ee5f83..e9a4ee153c 100755 --- a/calendar/inc/class.bocalendar.inc.php +++ b/calendar/inc/class.bocalendar.inc.php @@ -1566,10 +1566,10 @@ //NDEE: cutting off too long entries 140304 //ToDo: calculate length based on client window - elseif(strlen($event[$field]) > 19 && !$this->printer_friendly) + elseif(strlen($event[$field]) > 19 && !$this->printer_friendly && $field == "title") // elseif(strlen($event[$field]) > 19 && $this->printer_friendly) { - return substr($event[$field], 0 , 19) . ' [...]'; + return substr($event[$field], 0 , 19) . ' ...'; } else {