mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-27 09:09:04 +01:00
fixed broken display of event title onMouseOver.
This commit is contained in:
parent
c7b6cf2a49
commit
439f33e2e8
@ -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) . ' <span class="to_continue">[...]</span>';
|
||||
return substr($event[$field], 0 , 19) . ' ...';
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user