mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-03-03 17:41:27 +01:00
removed phpgw::strip_html, which is basicly htmlentities, from the calendar- and addressbook title function, as this is handled by eTemplate
This commit is contained in:
parent
3c028f82ab
commit
cf90e2d5f6
@ -818,7 +818,7 @@
|
|||||||
$name .= ' -- ' . $GLOBALS['phpgw']->common->show_date($this->bocal->maketime($event['end']) - $this->bocal->datetime->tz_offset);
|
$name .= ' -- ' . $GLOBALS['phpgw']->common->show_date($this->bocal->maketime($event['end']) - $this->bocal->datetime->tz_offset);
|
||||||
$name .= ': ' . $event['title'];
|
$name .= ': ' . $event['title'];
|
||||||
|
|
||||||
return $GLOBALS['phpgw']->strip_html($name);
|
return $name;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
@ -875,7 +875,7 @@
|
|||||||
{
|
{
|
||||||
$name = $addr['org_name'].': '.$name;
|
$name = $addr['org_name'].': '.$name;
|
||||||
}
|
}
|
||||||
return $GLOBALS['phpgw']->strip_html($name);
|
return $name;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
|
Loading…
Reference in New Issue
Block a user