Changeset 2688

Show
Ignore:
Timestamp:
07/03/08 00:38:58 (20 months ago)
Author:
bchoate
Message:

Ignore invalid PluginPath locations.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/release-41/php/mt.php.pre

    r2683 r2688  
    102102 
    103103        foreach ($plugin_paths as $path) { 
    104             if ($dh = opendir($path)) { 
     104            if ($dh = @opendir($path)) { 
    105105                 while (($file = readdir($dh)) !== false) { 
    106106                     if ($file == "." || $file == "..")