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:
Ralf Becker 2003-06-27 11:15:33 +00:00
parent 3c028f82ab
commit cf90e2d5f6

View File

@ -818,7 +818,7 @@
$name .= ' -- ' . $GLOBALS['phpgw']->common->show_date($this->bocal->maketime($event['end']) - $this->bocal->datetime->tz_offset);
$name .= ': ' . $event['title'];
return $GLOBALS['phpgw']->strip_html($name);
return $name;
}
/*!
@ -875,7 +875,7 @@
{
$name = $addr['org_name'].': '.$name;
}
return $GLOBALS['phpgw']->strip_html($name);
return $name;
}
/*!