Code

Mail reporting works at least in konqueror/kmail now.
authorjanw <janw@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 31 Jul 2007 11:51:21 +0000 (11:51 +0000)
committerjanw <janw@594d385d-05f5-0310-b6e9-bd551577e9d8>
Tue, 31 Jul 2007 11:51:21 +0000 (11:51 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.5@6948 594d385d-05f5-0310-b6e9-bd551577e9d8

include/functions.inc

index 8867c0674c83c66ac1ee415c1c58361748d8799a..2624017144274db1bc4438747ebde85896bf1373 100644 (file)
@@ -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:
 ?>