From 3cce2d1996c8b809502998f4098228a960de0d53 Mon Sep 17 00:00:00 2001
From: James <james@rezo.net>
Date: Wed, 4 Oct 2006 17:05:09 +0000
Subject: [PATCH] =?UTF-8?q?introduction=20de=20=5FDIR=5FCHMOD,=20une=20con?=
 =?UTF-8?q?stante=20permettant=20de=20d=C3=A9finir=20les=20permissions=20d?=
 =?UTF-8?q?es=20fichiers=20cr=C3=A9=C3=A9s=20par=20spip.?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 ecrire/inc/flock.php       | 2 +-
 ecrire/inc/getdocument.php | 2 +-
 ecrire/inc/utils.php       | 2 +-
 ecrire/inc_version.php     | 2 ++
 4 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/ecrire/inc/flock.php b/ecrire/inc/flock.php
index 992b58d7a8..46ce641b2c 100644
--- a/ecrire/inc/flock.php
+++ b/ecrire/inc/flock.php
@@ -163,7 +163,7 @@ function sous_repertoire($base, $subdir, $nobase = false) {
 		return "$baseaff$subdir/";
 
 	@mkdir($path, 0777);
-	@chmod($path, 0777);
+	@chmod($path, _DIR_CHMOD);
 
 	$ok = false;
 	if ($f = @fopen("$path/dir_test.php", "w")) {
diff --git a/ecrire/inc/getdocument.php b/ecrire/inc/getdocument.php
index 58b9790996..88c8458918 100644
--- a/ecrire/inc/getdocument.php
+++ b/ecrire/inc/getdocument.php
@@ -88,7 +88,7 @@ function deplacer_fichier_upload($source, $dest, $move=false) {
 	else				$ok = @copy($source, $dest);
 	if (!$ok) $ok = @move_uploaded_file($source, $dest);
 	if ($ok)
-		@chmod($dest, 0666);
+		@chmod($dest, _DIR_CHMOD & ~0111);
 	else {
 		$f = @fopen($dest,'w');
 		if ($f) {
diff --git a/ecrire/inc/utils.php b/ecrire/inc/utils.php
index a1504d89d6..919a73fbd4 100644
--- a/ecrire/inc/utils.php
+++ b/ecrire/inc/utils.php
@@ -508,7 +508,7 @@ function spip_touch($fichier, $duree=0, $touch=true) {
 	|| (@filemtime($fichier) < time() - $duree)) {
 		if ($touch) {
 			if (!@touch($fichier)) { @unlink($fichier); @touch($fichier); };
-			if (!$exists) @chmod($fichier, 0666);
+			if (!$exists) @chmod($fichier, _DIR_CHMOD & ~0111);
 		}
 		return true;
 	}
diff --git a/ecrire/inc_version.php b/ecrire/inc_version.php
index d7448b755e..a9e7f1e575 100644
--- a/ecrire/inc_version.php
+++ b/ecrire/inc_version.php
@@ -265,6 +265,8 @@ function spip_initialisation_parametree($dir1, $dir2) {
 	if ($too_late) return;
 	$too_late = true;
 
+	define('_DIR_CHMOD', 0777);
+	
 	define('_DIR_IMG', $dir1 ."IMG/");
 	define('_DIR_DOC', $dir1 ."IMG/");
 	define('_DIR_LOGOS', $dir1 ."IMG/");
-- 
GitLab