X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=html%2Fgetfax.php;h=374b7e25562388f96d86f7bfd7f71a9bd0d046f8;hb=631835d21ce03287d25d8578ccf3a14bbcb74acc;hp=abf40da83d30930a9b6fa0abb11f49d4fc104a0c;hpb=aa26fd47b6cffd3a40d6cfb8e780d813395600a0;p=gosa.git diff --git a/html/getfax.php b/html/getfax.php index abf40da83..374b7e255 100644 --- a/html/getfax.php +++ b/html/getfax.php @@ -26,7 +26,7 @@ session_start (); /* Logged in? Simple security check */ if (!isset($_SESSION['ui'])){ - gosa_log ("Error: getfax.php called without session"); + new log("security","faxreport/faxreport","",array(),"Error: getfax.php called without session") ; header ("Location: index.php"); exit; } @@ -34,7 +34,7 @@ $ui= $_SESSION["ui"]; /* User object present? */ if (!isset($_SESSION['fuserfilter'])){ - gosa_log ("Error: getfax.php called without propper session data"); + new log("security","faxreport/faxreport","",array(),"getfax.php called without propper session data") ; header ("Location: index.php"); exit; } @@ -101,22 +101,22 @@ if (!isset($_GET['download'])){ /* Loading image */ if(!$handle = imagick_blob2image($data)) { - gosa_log("Can't Load image"); + new log("view","faxreport/faxreport","",array(),"Can't load fax image") ; } /* Converting image to PNG */ if(!imagick_convert($handle,"PNG")) { - gosa_log("Can't Convert to PNG"); + new log("view","faxreport/faxreport","",array(),"Can't convert fax image to png") ; } /* Resizing image to 420x594 and blur */ if(!imagick_resize($handle,420,594,IMAGICK_FILTER_GAUSSIAN,1)){ - gosa_log("imagick_resize failed"); + new log("view","faxreport/faxreport","",array(),"Can't resize fax image") ; } /* Creating binary Code for the Image */ if(!$data = imagick_image2blob($handle)){ - gosa_log("Can't create blob for image"); + new log("view","faxreport/faxreport","",array(),"Reading fax image image failed") ; } }