DataObjects/Images.php
authorEdward <edward@roojs.com>
Thu, 21 Nov 2013 05:27:21 +0000 (13:27 +0800)
committerEdward <edward@roojs.com>
Thu, 21 Nov 2013 05:27:21 +0000 (13:27 +0800)
DataObjects/Images.php

index 3d45a42..4553d48 100644 (file)
@@ -193,15 +193,12 @@ class Pman_Core_DataObjects_Images extends DB_DataObject
     function beforeDelete()
     {
         $fn = $this->getStoreName();
-        print_r($fn);
         if (file_exists($fn)) {
             unlink($fn);
         }
         // delete thumbs..
         $b = basename($fn);
-        
         $d = dirname($fn);
-        print_r($d);exit;
         if (file_exists($d)) {
                 
             $dh = opendir($d);