mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-27 13:22:06 +02: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
|
//NDEE: cutting off too long entries 140304
|
||||||
//ToDo: calculate length based on client window
|
//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)
|
// 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
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user