Show
Ignore:
Timestamp:
07/20/2008 08:34:36 PM (4 months ago)
Author:
Shadowhand
Message:

Replacing file_exists calls with is_file and is_dir, where possible.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/libraries/drivers/Image/ImageMagick.php

    r2709 r3168  
    4343 
    4444                // Check to make sure the provided path is correct 
    45                 if ( ! file_exists(realpath($config['directory']).'/convert'.$this->ext)) 
     45                if ( ! is_file(realpath($config['directory']).'/convert'.$this->ext)) 
    4646                        throw new Kohana_Exception('image.imagemagick.not_found', 'convert'.$this->ext); 
    4747