From: janw Date: Tue, 31 Jul 2007 11:51:21 +0000 (+0000) Subject: Mail reporting works at least in konqueror/kmail now. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a106e2777418a3b69be2b704729abdcb81f6b190;p=gosa.git Mail reporting works at least in konqueror/kmail now. git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@6948 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/include/functions.inc b/include/functions.inc index 8867c0674..262401714 100644 --- a/include/functions.inc +++ b/include/functions.inc @@ -2467,6 +2467,9 @@ function prepare4mailbody($string) "//", "/\?/", + "/\&/", + "/\(/", + "/\)/", "/\"/"); $to = array( @@ -2481,6 +2484,9 @@ function prepare4mailbody($string) "%3C", "%3E", "%3F", + "%38", + "%28", + "%29", "%22"); $string = preg_replace($from,$to,$string); @@ -2517,6 +2523,5 @@ function mac2company($mac) return ($vendor); } - // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?>