[wpmu-trac] Re: [WordPress MU Trac] #472: Available space check fails when directory doesn't exist.

WordPress MU Trac wpmu-trac at lists.automattic.com
Tue Oct 23 23:53:23 GMT 2007


#472: Available space check fails when directory doesn't exist.
------------------------+---------------------------------------------------
 Reporter:  beaulebens  |        Owner:  somebody
     Type:  defect      |       Status:  reopened
 Priority:  high        |    Milestone:          
Component:  component1  |      Version:          
 Severity:  critical    |   Resolution:          
 Keywords:              |  
------------------------+---------------------------------------------------
Changes (by ktlee):

  * status:  closed => reopened
  * resolution:  fixed =>

Comment:

 $dir is always empty

 {{{
 if (!(is_dir($dir) && is_readable($dir))) return;

 }}}

 should be


 {{{
 if (!(is_dir($dirName) && is_readable($dirName))) return;
 }}}

-- 
Ticket URL: <http://trac.mu.wordpress.org/ticket/472#comment:2>
WordPress MU Trac <http://mu.wordpress.org/>
WordPress Multiuser


More information about the wpmu-trac mailing list