Changeset 2367

Show
Ignore:
Timestamp:
03/28/2008 11:52:26 AM (8 months ago)
Author:
Shadowhand
Message:

file::mime() should only be used on files

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/helpers/file.php

    r2366 r2367  
    2424        { 
    2525                // Make sure the file is readable 
    26                 if ( ! file_exists($filename) OR ! is_readable($filename)) 
     26                if ( ! file_exists($filename) OR ! is_file($filename) OR ! is_readable($filename)) 
    2727                        return FALSE; 
    2828