X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=html%2Fgetfax.php;h=374b7e25562388f96d86f7bfd7f71a9bd0d046f8;hb=4b0ae24d1609910eaaa03f2b5cd2fc0057c5f020;hp=61afdd80524298223d65aa0dc88615b6b8e302b6;hpb=46182a9fd0b5bdfc3b6feb08307b11e906eebaf8;p=gosa.git diff --git a/html/getfax.php b/html/getfax.php index 61afdd805..374b7e255 100644 --- a/html/getfax.php +++ b/html/getfax.php @@ -26,16 +26,16 @@ session_start (); /* Logged in? Simple security check */ if (!isset($_SESSION['ui'])){ - gosa_log ("Error: getfax.php called without session"); - header ("Location: ../index.php"); + new log("security","faxreport/faxreport","",array(),"Error: getfax.php called without session") ; + header ("Location: index.php"); exit; } $ui= $_SESSION["ui"]; /* User object present? */ if (!isset($_SESSION['fuserfilter'])){ - gosa_log ("Error: getfax.php called without propper session data"); - header ("Location: ../index.php"); + 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") ; } }