DataObjects/core.sql
[Pman.Core] / Images.php
index b248187..c659c4d 100644 (file)
@@ -201,7 +201,6 @@ class Pman_Core_Images extends Pman
         }
         
         
-        
         $this->as_mimetype = $_REQUEST['as'];
         $this->mimetype = $_REQUEST['mimetype'];
         require_once 'File/MimeType.php';
@@ -212,8 +211,6 @@ class Pman_Core_Images extends Pman
         $tmp = $this->tempName($src_ext);
         file_put_contents($tmp, $_REQUEST['data']);
         
-        
-        
         require_once 'File/Convert.php';
         $cv = new File_Convert($tmp, $this->mimetype);
         
@@ -222,7 +219,6 @@ class Pman_Core_Images extends Pman
                 empty($_REQUEST['width']) ? 0 : $_REQUEST['width'],
                 empty($_REQUEST['height']) ? 0 : $_REQUEST['height']
         );
-        print_r($fn);exit;
         if (!empty($_REQUEST['as_data'])) {
             $this->jok(base64_encode(file_get_contents($fn)));
         }