mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-03 23:43:20 +02:00
merge r2916 from branch 2.0 to trunk
bug 904 fixed: an index.htm is created in directories created by pwg.images.add web API method, only directories that contains pictures. git-svn-id: http://piwigo.org/svn/trunk@2917 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -1540,4 +1540,18 @@ function convert_charset($str, $source_charset, $dest_charset)
|
||||
}
|
||||
return $str; //???
|
||||
}
|
||||
|
||||
/**
|
||||
* makes sure a index.htm protects the directory from browser file listing
|
||||
*
|
||||
* @param string dir directory
|
||||
*/
|
||||
function secure_directory($dir)
|
||||
{
|
||||
$file = $dir.'/index.htm';
|
||||
if (!file_exists($file))
|
||||
{
|
||||
@file_put_contents($file, 'Not allowed!');
|
||||
}
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user