DataObjects/Images.php
authoredward <edward@roojs.com>
Wed, 6 Sep 2017 03:32:21 +0000 (11:32 +0800)
committeredward <edward@roojs.com>
Wed, 6 Sep 2017 03:32:21 +0000 (11:32 +0800)
DataObjects/Images.php

index 9bb9898..43a06b8 100644 (file)
@@ -780,9 +780,11 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
         
         $type = pathinfo($file, PATHINFO_EXTENSION);
         
-        $data = file_get_contents($type);
+        $data = file_get_contents($file);
         
         $base64 = 'data:image/' . $type . ';base64,' . base64_encode($data);
+        
+        return $base64;
     }
     
  }