Images.php
authorChris <chris@roojs.com>
Fri, 12 Oct 2012 11:57:38 +0000 (19:57 +0800)
committerChris <chris@roojs.com>
Fri, 12 Oct 2012 11:57:38 +0000 (19:57 +0800)
Images.php

index 7599a5b..bdf5b95 100644 (file)
@@ -79,7 +79,7 @@ class Pman_Core_Images extends Pman
             
         } else if (!empty($bits[0]) && $bits[0] == 'events') {
             $popts = PEAR::getStaticProperty('Pman','options');
-            $file = "{$popts['event_log_dir']}/{$bits[1]}.jpg";
+            $file = "{$popts['event_log_dir']}/{$bits[1]}";
             header ('Content-Type: image/jpeg');
             if(!empty($bits[2]) && $bits[2] == 'download'){
                 header("Content-Disposition: attachment; filename=\"".basename($file)."\";" );
@@ -87,7 +87,7 @@ class Pman_Core_Images extends Pman
                 flush();
                 readfile($file);
             }else{
-                $fh = fopen($file,'r');
+                $fh = fopen($file.'.jpg','r');
                 echo fread($fh,filesize($file));
             }
             exit;