PHP Classes

bug

Recommend this page to a friend!

      dUnzip2  >  All threads  >  bug  >  (Un) Subscribe thread alerts  
Subject:bug
Summary:a bug
Messages:1
Author:deconfig
Date:2008-08-01 14:57:35
 

  1. bug   Reply   Report abuse  
Picture of deconfig deconfig - 2008-08-01 14:57:35
dUnzip2.inc.php - line 219:

chmod($targetFileName, 0777);

this will always chmod all files to 0777, regardless of your $applyChmod settings.

that line should look like:

chmod($targetFileName, $applyChmod);