Show
Ignore:
Timestamp:
02/10/2008 12:23:51 AM (11 months ago)
Author:
Shadowhand
Message:

Cleaning up some small things in libraries and drivers. Also removed Form_Model and the media controller.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/system/libraries/Archive.php

    r1924 r2016  
    6060 
    6161                // Set the name 
    62                 ($name === NULL) and $name = $path; 
     62                empty($name) and $name = $path; 
    6363 
    6464                if (file_exists($path) AND is_dir($path)) 
     
    7171                        $this->paths[] = array($path, $name); 
    7272 
    73                         if ($recursive == TRUE) 
     73                        if ($recursive === TRUE) 
    7474                        { 
    7575                                $dir = opendir($path);