Completed
Push — master ( 5c56fd...14e8ce )
by cam
04:16
created
ecrire/inc/utils.php 1 patch
Indentation   +2243 added lines, -2244 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
  **/
18 18
 
19 19
 if (!defined('_ECRIRE_INC_VERSION')) {
20
-	return;
20
+    return;
21 21
 }
22 22
 
23 23
 
@@ -48,63 +48,63 @@  discard block
 block discarded – undo
48 48
  *     Nom de la fonction, ou false.
49 49
  */
50 50
 function charger_fonction($nom, $dossier = 'exec', $continue = false) {
51
-	static $echecs = array();
52
-
53
-	if (strlen($dossier) and substr($dossier, -1) != '/') {
54
-		$dossier .= '/';
55
-	}
56
-	$f = str_replace('/', '_', $dossier) . $nom;
57
-
58
-	if (function_exists($f)) {
59
-		return $f;
60
-	}
61
-	if (function_exists($g = $f . '_dist')) {
62
-		return $g;
63
-	}
64
-
65
-	if (isset($echecs[$f])) {
66
-		return $echecs[$f];
67
-	}
68
-	// Sinon charger le fichier de declaration si plausible
69
-
70
-	if (!preg_match(',^\w+$,', $f)) {
71
-		if ($continue) {
72
-			return false;
73
-		} //appel interne, on passe
74
-		include_spip('inc/minipres');
75
-		echo minipres();
76
-		exit;
77
-	}
78
-
79
-	// passer en minuscules (cf les balises de formulaires)
80
-	// et inclure le fichier
81
-	if (!$inc = include_spip($dossier . ($d = strtolower($nom)))
82
-		// si le fichier truc/machin/nom.php n'existe pas,
83
-		// la fonction peut etre definie dans truc/machin.php qui regroupe plusieurs petites fonctions
84
-		and strlen(dirname($dossier)) and dirname($dossier) != '.'
85
-	) {
86
-		include_spip(substr($dossier, 0, -1));
87
-	}
88
-	if (function_exists($f)) {
89
-		return $f;
90
-	}
91
-	if (function_exists($g)) {
92
-		return $g;
93
-	}
94
-
95
-	if ($continue) {
96
-		return $echecs[$f] = false;
97
-	}
98
-
99
-	// Echec : message d'erreur
100
-	spip_log("fonction $nom ($f ou $g) indisponible" .
101
-		($inc ? "" : " (fichier $d absent de $dossier)"));
102
-
103
-	include_spip('inc/minipres');
104
-	echo minipres(_T('forum_titre_erreur'),
105
-		_T('fichier_introuvable', array('fichier' => '<b>' . spip_htmlentities($d) . '</b>')),
106
-		array('all_inline'=>true,'status'=>404));
107
-	exit;
51
+    static $echecs = array();
52
+
53
+    if (strlen($dossier) and substr($dossier, -1) != '/') {
54
+        $dossier .= '/';
55
+    }
56
+    $f = str_replace('/', '_', $dossier) . $nom;
57
+
58
+    if (function_exists($f)) {
59
+        return $f;
60
+    }
61
+    if (function_exists($g = $f . '_dist')) {
62
+        return $g;
63
+    }
64
+
65
+    if (isset($echecs[$f])) {
66
+        return $echecs[$f];
67
+    }
68
+    // Sinon charger le fichier de declaration si plausible
69
+
70
+    if (!preg_match(',^\w+$,', $f)) {
71
+        if ($continue) {
72
+            return false;
73
+        } //appel interne, on passe
74
+        include_spip('inc/minipres');
75
+        echo minipres();
76
+        exit;
77
+    }
78
+
79
+    // passer en minuscules (cf les balises de formulaires)
80
+    // et inclure le fichier
81
+    if (!$inc = include_spip($dossier . ($d = strtolower($nom)))
82
+        // si le fichier truc/machin/nom.php n'existe pas,
83
+        // la fonction peut etre definie dans truc/machin.php qui regroupe plusieurs petites fonctions
84
+        and strlen(dirname($dossier)) and dirname($dossier) != '.'
85
+    ) {
86
+        include_spip(substr($dossier, 0, -1));
87
+    }
88
+    if (function_exists($f)) {
89
+        return $f;
90
+    }
91
+    if (function_exists($g)) {
92
+        return $g;
93
+    }
94
+
95
+    if ($continue) {
96
+        return $echecs[$f] = false;
97
+    }
98
+
99
+    // Echec : message d'erreur
100
+    spip_log("fonction $nom ($f ou $g) indisponible" .
101
+        ($inc ? "" : " (fichier $d absent de $dossier)"));
102
+
103
+    include_spip('inc/minipres');
104
+    echo minipres(_T('forum_titre_erreur'),
105
+        _T('fichier_introuvable', array('fichier' => '<b>' . spip_htmlentities($d) . '</b>')),
106
+        array('all_inline'=>true,'status'=>404));
107
+    exit;
108 108
 }
109 109
 
110 110
 /**
@@ -114,17 +114,17 @@  discard block
 block discarded – undo
114 114
  * @return bool
115 115
  */
116 116
 function include_once_check($file) {
117
-	if (file_exists($file)) {
118
-		include_once $file;
117
+    if (file_exists($file)) {
118
+        include_once $file;
119 119
 
120
-		return true;
121
-	}
122
-	$crash = (isset($GLOBALS['meta']['message_crash_plugins']) ? unserialize($GLOBALS['meta']['message_crash_plugins']) : '');
123
-	$crash = ($crash ? $crash : array());
124
-	$crash[$file] = true;
125
-	ecrire_meta('message_crash_plugins', serialize($crash));
120
+        return true;
121
+    }
122
+    $crash = (isset($GLOBALS['meta']['message_crash_plugins']) ? unserialize($GLOBALS['meta']['message_crash_plugins']) : '');
123
+    $crash = ($crash ? $crash : array());
124
+    $crash[$file] = true;
125
+    ecrire_meta('message_crash_plugins', serialize($crash));
126 126
 
127
-	return false;
127
+    return false;
128 128
 }
129 129
 
130 130
 
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
  *     - string : chemin du fichier trouvé
149 149
  **/
150 150
 function include_spip($f, $include = true) {
151
-	return find_in_path($f . '.php', '', $include);
151
+    return find_in_path($f . '.php', '', $include);
152 152
 }
153 153
 
154 154
 /**
@@ -168,7 +168,7 @@  discard block
 block discarded – undo
168 168
  *     - string : chemin du fichier trouvé
169 169
  **/
170 170
 function require_spip($f) {
171
-	return find_in_path($f . '.php', '', 'required');
171
+    return find_in_path($f . '.php', '', 'required');
172 172
 }
173 173
 
174 174
 
@@ -177,26 +177,26 @@  discard block
 block discarded – undo
177 177
  * quand on a besoin dans le PHP de filtres/fonctions qui y sont definis
178 178
  */
179 179
 function include_fichiers_fonctions() {
180
-	static $done = false;
181
-	if (!$done) {
182
-		include_spip('inc/lang');
180
+    static $done = false;
181
+    if (!$done) {
182
+        include_spip('inc/lang');
183 183
 
184
-		// NB: mes_fonctions peut initialiser $dossier_squelettes (old-style)
185
-		// donc il faut l'inclure "en globals"
186
-		if ($f = find_in_path('mes_fonctions.php')) {
187
-			global $dossier_squelettes;
188
-			include_once(_ROOT_CWD . $f);
189
-		}
184
+        // NB: mes_fonctions peut initialiser $dossier_squelettes (old-style)
185
+        // donc il faut l'inclure "en globals"
186
+        if ($f = find_in_path('mes_fonctions.php')) {
187
+            global $dossier_squelettes;
188
+            include_once(_ROOT_CWD . $f);
189
+        }
190 190
 
191
-		if (@is_readable(_CACHE_PLUGINS_FCT)) {
192
-			// chargement optimise precompile
193
-			include_once(_CACHE_PLUGINS_FCT);
194
-		}
195
-		if (test_espace_prive()) {
196
-			include_spip('inc/filtres_ecrire');
197
-		}
198
-		$done = true;
199
-	}
191
+        if (@is_readable(_CACHE_PLUGINS_FCT)) {
192
+            // chargement optimise precompile
193
+            include_once(_CACHE_PLUGINS_FCT);
194
+        }
195
+        if (test_espace_prive()) {
196
+            include_spip('inc/filtres_ecrire');
197
+        }
198
+        $done = true;
199
+    }
200 200
 }
201 201
 
202 202
 /**
@@ -222,22 +222,22 @@  discard block
 block discarded – undo
222 222
  *     Les paramètres du pipeline modifiés
223 223
  **/
224 224
 function minipipe($fonc, &$val) {
225
-	// fonction
226
-	if (function_exists($fonc)) {
227
-		$val = call_user_func($fonc, $val);
228
-	} // Class::Methode
229
-	else {
230
-		if (preg_match("/^(\w*)::(\w*)$/S", $fonc, $regs)
231
-			and $methode = array($regs[1], $regs[2])
232
-			and is_callable($methode)
233
-		) {
234
-			$val = call_user_func($methode, $val);
235
-		} else {
236
-			spip_log("Erreur - '$fonc' non definie !");
237
-		}
238
-	}
225
+    // fonction
226
+    if (function_exists($fonc)) {
227
+        $val = call_user_func($fonc, $val);
228
+    } // Class::Methode
229
+    else {
230
+        if (preg_match("/^(\w*)::(\w*)$/S", $fonc, $regs)
231
+            and $methode = array($regs[1], $regs[2])
232
+            and is_callable($methode)
233
+        ) {
234
+            $val = call_user_func($methode, $val);
235
+        } else {
236
+            spip_log("Erreur - '$fonc' non definie !");
237
+        }
238
+    }
239 239
 
240
-	return $val;
240
+    return $val;
241 241
 }
242 242
 
243 243
 /**
@@ -268,45 +268,45 @@  discard block
 block discarded – undo
268 268
  *     Résultat
269 269
  */
270 270
 function pipeline($action, $val = null) {
271
-	static $charger;
272
-
273
-	// chargement initial des fonctions mises en cache, ou generation du cache
274
-	if (!$charger) {
275
-		if (!($ok = @is_readable($charger = _CACHE_PIPELINES))) {
276
-			include_spip('inc/plugin');
277
-			// generer les fichiers php precompiles
278
-			// de chargement des plugins et des pipelines
279
-			actualise_plugins_actifs();
280
-			if (!($ok = @is_readable($charger))) {
281
-				spip_log("fichier $charger pas cree");
282
-			}
283
-		}
284
-
285
-		if ($ok) {
286
-			include_once $charger;
287
-		}
288
-	}
289
-
290
-	// appliquer notre fonction si elle existe
291
-	$fonc = 'execute_pipeline_' . strtolower($action);
292
-	if (function_exists($fonc)) {
293
-		$val = $fonc($val);
294
-	} // plantage ?
295
-	else {
296
-		spip_log("fonction $fonc absente : pipeline desactive", _LOG_ERREUR);
297
-	}
298
-
299
-	// si le flux est une table avec 2 cle args&data
300
-	// on ne ressort du pipe que les donnees dans 'data'
301
-	// array_key_exists pour php 4.1.0
302
-	if (is_array($val)
303
-		and count($val) == 2
304
-		and (array_key_exists('data', $val))
305
-	) {
306
-		$val = $val['data'];
307
-	}
308
-
309
-	return $val;
271
+    static $charger;
272
+
273
+    // chargement initial des fonctions mises en cache, ou generation du cache
274
+    if (!$charger) {
275
+        if (!($ok = @is_readable($charger = _CACHE_PIPELINES))) {
276
+            include_spip('inc/plugin');
277
+            // generer les fichiers php precompiles
278
+            // de chargement des plugins et des pipelines
279
+            actualise_plugins_actifs();
280
+            if (!($ok = @is_readable($charger))) {
281
+                spip_log("fichier $charger pas cree");
282
+            }
283
+        }
284
+
285
+        if ($ok) {
286
+            include_once $charger;
287
+        }
288
+    }
289
+
290
+    // appliquer notre fonction si elle existe
291
+    $fonc = 'execute_pipeline_' . strtolower($action);
292
+    if (function_exists($fonc)) {
293
+        $val = $fonc($val);
294
+    } // plantage ?
295
+    else {
296
+        spip_log("fonction $fonc absente : pipeline desactive", _LOG_ERREUR);
297
+    }
298
+
299
+    // si le flux est une table avec 2 cle args&data
300
+    // on ne ressort du pipe que les donnees dans 'data'
301
+    // array_key_exists pour php 4.1.0
302
+    if (is_array($val)
303
+        and count($val) == 2
304
+        and (array_key_exists('data', $val))
305
+    ) {
306
+        $val = $val['data'];
307
+    }
308
+
309
+    return $val;
310 310
 }
311 311
 
312 312
 /**
@@ -350,38 +350,38 @@  discard block
 block discarded – undo
350 350
  *     paramètre est planté pour cause de compatibilité ascendante.
351 351
  */
352 352
 function spip_log($message = null, $name = null) {
353
-	static $pre = array();
354
-	static $log;
355
-	preg_match('/^([a-z_]*)\.?(\d)?$/iS', (string)$name, $regs);
356
-	if (!isset($regs[1]) or !$logname = $regs[1]) {
357
-		$logname = null;
358
-	}
359
-	if (!isset($regs[2])) {
360
-		$niveau = _LOG_INFO;
361
-	}
362
-	else {
363
-		$niveau = intval($regs[2]);
364
-	}
365
-
366
-	if ($niveau <= (defined('_LOG_FILTRE_GRAVITE') ? _LOG_FILTRE_GRAVITE : _LOG_INFO_IMPORTANTE)) {
367
-		if (!$pre) {
368
-			$pre = array(
369
-				_LOG_HS => 'HS:',
370
-				_LOG_ALERTE_ROUGE => 'ALERTE:',
371
-				_LOG_CRITIQUE => 'CRITIQUE:',
372
-				_LOG_ERREUR => 'ERREUR:',
373
-				_LOG_AVERTISSEMENT => 'WARNING:',
374
-				_LOG_INFO_IMPORTANTE => '!INFO:',
375
-				_LOG_INFO => 'info:',
376
-				_LOG_DEBUG => 'debug:'
377
-			);
378
-			$log = charger_fonction('log', 'inc');
379
-		}
380
-		if (!is_string($message)) {
381
-			$message = print_r($message, true);
382
-		}
383
-		$log($pre[$niveau] . ' ' . $message, $logname);
384
-	}
353
+    static $pre = array();
354
+    static $log;
355
+    preg_match('/^([a-z_]*)\.?(\d)?$/iS', (string)$name, $regs);
356
+    if (!isset($regs[1]) or !$logname = $regs[1]) {
357
+        $logname = null;
358
+    }
359
+    if (!isset($regs[2])) {
360
+        $niveau = _LOG_INFO;
361
+    }
362
+    else {
363
+        $niveau = intval($regs[2]);
364
+    }
365
+
366
+    if ($niveau <= (defined('_LOG_FILTRE_GRAVITE') ? _LOG_FILTRE_GRAVITE : _LOG_INFO_IMPORTANTE)) {
367
+        if (!$pre) {
368
+            $pre = array(
369
+                _LOG_HS => 'HS:',
370
+                _LOG_ALERTE_ROUGE => 'ALERTE:',
371
+                _LOG_CRITIQUE => 'CRITIQUE:',
372
+                _LOG_ERREUR => 'ERREUR:',
373
+                _LOG_AVERTISSEMENT => 'WARNING:',
374
+                _LOG_INFO_IMPORTANTE => '!INFO:',
375
+                _LOG_INFO => 'info:',
376
+                _LOG_DEBUG => 'debug:'
377
+            );
378
+            $log = charger_fonction('log', 'inc');
379
+        }
380
+        if (!is_string($message)) {
381
+            $message = print_r($message, true);
382
+        }
383
+        $log($pre[$niveau] . ' ' . $message, $logname);
384
+    }
385 385
 }
386 386
 
387 387
 /**
@@ -392,8 +392,8 @@  discard block
 block discarded – undo
392 392
  * @param array $opt Tableau d'options
393 393
  **/
394 394
 function journal($phrase, $opt = array()) {
395
-	$journal = charger_fonction('journal', 'inc');
396
-	$journal($phrase, $opt);
395
+    $journal = charger_fonction('journal', 'inc');
396
+    $journal($phrase, $opt);
397 397
 }
398 398
 
399 399
 
@@ -412,36 +412,36 @@  discard block
 block discarded – undo
412 412
  **/
413 413
 function _request($var, $c = false) {
414 414
 
415
-	if (is_array($c)) {
416
-		return isset($c[$var]) ? $c[$var] : null;
417
-	}
415
+    if (is_array($c)) {
416
+        return isset($c[$var]) ? $c[$var] : null;
417
+    }
418 418
 
419
-	if (isset($_GET[$var])) {
420
-		$a = $_GET[$var];
421
-	} elseif (isset($_POST[$var])) {
422
-		$a = $_POST[$var];
423
-	} else {
424
-		return null;
425
-	}
419
+    if (isset($_GET[$var])) {
420
+        $a = $_GET[$var];
421
+    } elseif (isset($_POST[$var])) {
422
+        $a = $_POST[$var];
423
+    } else {
424
+        return null;
425
+    }
426 426
 
427
-	// Si on est en ajax et en POST tout a ete encode
428
-	// via encodeURIComponent, il faut donc repasser
429
-	// dans le charset local...
430
-	if (defined('_AJAX')
431
-		and _AJAX
432
-		and isset($GLOBALS['meta']['charset'])
433
-		and $GLOBALS['meta']['charset'] != 'utf-8'
434
-		and is_string($a)
435
-		// check rapide mais pas fiable
436
-		and preg_match(',[\x80-\xFF],', $a)
437
-		// check fiable
438
-		and include_spip('inc/charsets')
439
-		and is_utf8($a)
440
-	) {
441
-		return importer_charset($a, 'utf-8');
442
-	}
427
+    // Si on est en ajax et en POST tout a ete encode
428
+    // via encodeURIComponent, il faut donc repasser
429
+    // dans le charset local...
430
+    if (defined('_AJAX')
431
+        and _AJAX
432
+        and isset($GLOBALS['meta']['charset'])
433
+        and $GLOBALS['meta']['charset'] != 'utf-8'
434
+        and is_string($a)
435
+        // check rapide mais pas fiable
436
+        and preg_match(',[\x80-\xFF],', $a)
437
+        // check fiable
438
+        and include_spip('inc/charsets')
439
+        and is_utf8($a)
440
+    ) {
441
+        return importer_charset($a, 'utf-8');
442
+    }
443 443
 
444
-	return $a;
444
+    return $a;
445 445
 }
446 446
 
447 447
 
@@ -459,22 +459,22 @@  discard block
 block discarded – undo
459 459
  *     - false sinon
460 460
  **/
461 461
 function set_request($var, $val = null, $c = false) {
462
-	if (is_array($c)) {
463
-		unset($c[$var]);
464
-		if ($val !== null) {
465
-			$c[$var] = $val;
466
-		}
462
+    if (is_array($c)) {
463
+        unset($c[$var]);
464
+        if ($val !== null) {
465
+            $c[$var] = $val;
466
+        }
467 467
 
468
-		return $c;
469
-	}
468
+        return $c;
469
+    }
470 470
 
471
-	unset($_GET[$var]);
472
-	unset($_POST[$var]);
473
-	if ($val !== null) {
474
-		$_GET[$var] = $val;
475
-	}
471
+    unset($_GET[$var]);
472
+    unset($_POST[$var]);
473
+    if ($val !== null) {
474
+        $_GET[$var] = $val;
475
+    }
476 476
 
477
-	return false; # n'affecte pas $c
477
+    return false; # n'affecte pas $c
478 478
 }
479 479
 
480 480
 /**
@@ -494,25 +494,25 @@  discard block
 block discarded – undo
494 494
  * @return array|mixed|string
495 495
  */
496 496
 function spip_sanitize_from_request($value, $key, $sanitize_function='entites_html') {
497
-	if (is_array($value)) {
498
-		if ($key=='*') {
499
-			$key = array_keys($value);
500
-		}
501
-		if (!is_array($key)) {
502
-			$key = [$key];
503
-		}
504
-		foreach ($key as $k) {
505
-			if (!empty($value[$k])) {
506
-				$value[$k] = spip_sanitize_from_request($value[$k], $k, $sanitize_function);
507
-			}
508
-		}
509
-		return $value;
510
-	}
511
-	// si la valeur vient des GET ou POST on la sanitize
512
-	if (!empty($value) and $value == _request($key)) {
513
-		$value = $sanitize_function($value);
514
-	}
515
-	return $value;
497
+    if (is_array($value)) {
498
+        if ($key=='*') {
499
+            $key = array_keys($value);
500
+        }
501
+        if (!is_array($key)) {
502
+            $key = [$key];
503
+        }
504
+        foreach ($key as $k) {
505
+            if (!empty($value[$k])) {
506
+                $value[$k] = spip_sanitize_from_request($value[$k], $k, $sanitize_function);
507
+            }
508
+        }
509
+        return $value;
510
+    }
511
+    // si la valeur vient des GET ou POST on la sanitize
512
+    if (!empty($value) and $value == _request($key)) {
513
+        $value = $sanitize_function($value);
514
+    }
515
+    return $value;
516 516
 }
517 517
 
518 518
 /**
@@ -520,23 +520,22 @@  discard block
 block discarded – undo
520 520
  * 
521 521
  * On est sur le web, on exclut certains protocoles, 
522 522
  * notamment 'file://', 'php://' et d'autres…
523
-
524 523
  * @param string $url
525 524
  * @return bool
526 525
  */
527 526
 function tester_url_absolue($url) {
528
-	$url = trim($url);
529
-	if (preg_match(";^([a-z]{3,7}:)?//;Uims", $url, $m)) {
530
-		if (
531
-			isset($m[1])
532
-			and $p = strtolower(rtrim($m[1], ':'))
533
-			and in_array($p, array('file', 'php', 'zlib', 'glob', 'phar', 'ssh2', 'rar', 'ogg', 'expect', 'zip'))
534
-		  ) {
535
-			return false;
536
-		}
537
-		return true;
538
-	}
539
-	return false;
527
+    $url = trim($url);
528
+    if (preg_match(";^([a-z]{3,7}:)?//;Uims", $url, $m)) {
529
+        if (
530
+            isset($m[1])
531
+            and $p = strtolower(rtrim($m[1], ':'))
532
+            and in_array($p, array('file', 'php', 'zlib', 'glob', 'phar', 'ssh2', 'rar', 'ogg', 'expect', 'zip'))
533
+            ) {
534
+            return false;
535
+        }
536
+        return true;
537
+    }
538
+    return false;
540 539
 }
541 540
 
542 541
 /**
@@ -558,94 +557,94 @@  discard block
 block discarded – undo
558 557
  * @return string URL
559 558
  */
560 559
 function parametre_url($url, $c, $v = null, $sep = '&amp;') {
561
-	// requete erronnee : plusieurs variable dans $c et aucun $v
562
-	if (strpos($c, "|") !== false and is_null($v)) {
563
-		return null;
564
-	}
565
-
566
-	// lever l'#ancre
567
-	if (preg_match(',^([^#]*)(#.*)$,', $url, $r)) {
568
-		$url = $r[1];
569
-		$ancre = $r[2];
570
-	} else {
571
-		$ancre = '';
572
-	}
573
-
574
-	// eclater
575
-	$url = preg_split(',[?]|&amp;|&,', $url);
576
-
577
-	// recuperer la base
578
-	$a = array_shift($url);
579
-	if (!$a) {
580
-		$a = './';
581
-	}
582
-
583
-	$regexp = ',^(' . str_replace('[]', '\[\]', $c) . '[[]?[]]?)(=.*)?$,';
584
-	$ajouts = array_flip(explode('|', $c));
585
-	$u = is_array($v) ? $v : rawurlencode($v);
586
-	$testv = (is_array($v) ? count($v) : strlen($v));
587
-	$v_read = null;
588
-	// lire les variables et agir
589
-	foreach ($url as $n => $val) {
590
-		if (preg_match($regexp, urldecode($val), $r)) {
591
-			$r = array_pad($r, 3, null);
592
-			if ($v === null) {
593
-				// c'est un tableau, on memorise les valeurs
594
-				if (substr($r[1], -2) == "[]") {
595
-					if (!$v_read) {
596
-						$v_read = array();
597
-					}
598
-					$v_read[] = $r[2] ? substr($r[2], 1) : '';
599
-				} // c'est un scalaire, on retourne direct
600
-				else {
601
-					return $r[2] ? substr($r[2], 1) : '';
602
-				}
603
-			} // suppression
604
-			elseif (!$testv) {
605
-				unset($url[$n]);
606
-			}
607
-			// Ajout. Pour une variable, remplacer au meme endroit,
608
-			// pour un tableau ce sera fait dans la prochaine boucle
609
-			elseif (substr($r[1], -2) != '[]') {
610
-				$url[$n] = $r[1] . '=' . $u;
611
-				unset($ajouts[$r[1]]);
612
-			}
613
-			// Pour les tableaux on laisse tomber les valeurs de
614
-			// départ, on remplira à l'étape suivante
615
-			else {
616
-				unset($url[$n]);
617
-			}
618
-		}
619
-	}
620
-
621
-	// traiter les parametres pas encore trouves
622
-	if ($v === null
623
-		and $args = func_get_args()
624
-		and count($args) == 2
625
-	) {
626
-		return $v_read; // rien trouve ou un tableau
627
-	} elseif ($testv) {
628
-		foreach ($ajouts as $k => $n) {
629
-			if (!is_array($v)) {
630
-				$url[] = $k . '=' . $u;
631
-			} else {
632
-				$id = (substr($k, -2) == '[]') ? $k : ($k . "[]");
633
-				foreach ($v as $w) {
634
-					$url[] = $id . '=' . (is_array($w) ? 'Array' : $w);
635
-				}
636
-			}
637
-		}
638
-	}
639
-
640
-	// eliminer les vides
641
-	$url = array_filter($url);
642
-
643
-	// recomposer l'adresse
644
-	if ($url) {
645
-		$a .= '?' . join($sep, $url);
646
-	}
647
-
648
-	return $a . $ancre;
560
+    // requete erronnee : plusieurs variable dans $c et aucun $v
561
+    if (strpos($c, "|") !== false and is_null($v)) {
562
+        return null;
563
+    }
564
+
565
+    // lever l'#ancre
566
+    if (preg_match(',^([^#]*)(#.*)$,', $url, $r)) {
567
+        $url = $r[1];
568
+        $ancre = $r[2];
569
+    } else {
570
+        $ancre = '';
571
+    }
572
+
573
+    // eclater
574
+    $url = preg_split(',[?]|&amp;|&,', $url);
575
+
576
+    // recuperer la base
577
+    $a = array_shift($url);
578
+    if (!$a) {
579
+        $a = './';
580
+    }
581
+
582
+    $regexp = ',^(' . str_replace('[]', '\[\]', $c) . '[[]?[]]?)(=.*)?$,';
583
+    $ajouts = array_flip(explode('|', $c));
584
+    $u = is_array($v) ? $v : rawurlencode($v);
585
+    $testv = (is_array($v) ? count($v) : strlen($v));
586
+    $v_read = null;
587
+    // lire les variables et agir
588
+    foreach ($url as $n => $val) {
589
+        if (preg_match($regexp, urldecode($val), $r)) {
590
+            $r = array_pad($r, 3, null);
591
+            if ($v === null) {
592
+                // c'est un tableau, on memorise les valeurs
593
+                if (substr($r[1], -2) == "[]") {
594
+                    if (!$v_read) {
595
+                        $v_read = array();
596
+                    }
597
+                    $v_read[] = $r[2] ? substr($r[2], 1) : '';
598
+                } // c'est un scalaire, on retourne direct
599
+                else {
600
+                    return $r[2] ? substr($r[2], 1) : '';
601
+                }
602
+            } // suppression
603
+            elseif (!$testv) {
604
+                unset($url[$n]);
605
+            }
606
+            // Ajout. Pour une variable, remplacer au meme endroit,
607
+            // pour un tableau ce sera fait dans la prochaine boucle
608
+            elseif (substr($r[1], -2) != '[]') {
609
+                $url[$n] = $r[1] . '=' . $u;
610
+                unset($ajouts[$r[1]]);
611
+            }
612
+            // Pour les tableaux on laisse tomber les valeurs de
613
+            // départ, on remplira à l'étape suivante
614
+            else {
615
+                unset($url[$n]);
616
+            }
617
+        }
618
+    }
619
+
620
+    // traiter les parametres pas encore trouves
621
+    if ($v === null
622
+        and $args = func_get_args()
623
+        and count($args) == 2
624
+    ) {
625
+        return $v_read; // rien trouve ou un tableau
626
+    } elseif ($testv) {
627
+        foreach ($ajouts as $k => $n) {
628
+            if (!is_array($v)) {
629
+                $url[] = $k . '=' . $u;
630
+            } else {
631
+                $id = (substr($k, -2) == '[]') ? $k : ($k . "[]");
632
+                foreach ($v as $w) {
633
+                    $url[] = $id . '=' . (is_array($w) ? 'Array' : $w);
634
+                }
635
+            }
636
+        }
637
+    }
638
+
639
+    // eliminer les vides
640
+    $url = array_filter($url);
641
+
642
+    // recomposer l'adresse
643
+    if ($url) {
644
+        $a .= '?' . join($sep, $url);
645
+    }
646
+
647
+    return $a . $ancre;
649 648
 }
650 649
 
651 650
 /**
@@ -663,21 +662,21 @@  discard block
 block discarded – undo
663 662
  * @return string
664 663
  */
665 664
 function ancre_url($url, $ancre) {
666
-	// lever l'#ancre
667
-	if (preg_match(',^([^#]*)(#.*)$,', $url, $r)) {
668
-		$url = $r[1];
669
-	}
670
-	if (preg_match('/[^-_a-zA-Z0-9]+/S', $ancre)) {
671
-		if (!function_exists('translitteration')) {
672
-			include_spip('inc/charsets');
673
-		}
674
-		$ancre = preg_replace(
675
-			array('/^[^-_a-zA-Z0-9]+/', '/[^-_a-zA-Z0-9]/'),
676
-			array('', '-'),
677
-			translitteration($ancre)
678
-		);
679
-	}
680
-	return $url . (strlen($ancre) ? '#' . $ancre : '');
665
+    // lever l'#ancre
666
+    if (preg_match(',^([^#]*)(#.*)$,', $url, $r)) {
667
+        $url = $r[1];
668
+    }
669
+    if (preg_match('/[^-_a-zA-Z0-9]+/S', $ancre)) {
670
+        if (!function_exists('translitteration')) {
671
+            include_spip('inc/charsets');
672
+        }
673
+        $ancre = preg_replace(
674
+            array('/^[^-_a-zA-Z0-9]+/', '/[^-_a-zA-Z0-9]/'),
675
+            array('', '-'),
676
+            translitteration($ancre)
677
+        );
678
+    }
679
+    return $url . (strlen($ancre) ? '#' . $ancre : '');
681 680
 }
682 681
 
683 682
 /**
@@ -687,16 +686,16 @@  discard block
 block discarded – undo
687 686
  * @return string
688 687
  */
689 688
 function nettoyer_uri($reset = null) {
690
-	static $done = false;
691
-	static $propre = '';
692
-	if (!is_null($reset)) {
693
-		return $propre = $reset;
694
-	}
695
-	if ($done) {
696
-		return $propre;
697
-	}
698
-	$done = true;
699
-	return $propre = nettoyer_uri_var($GLOBALS['REQUEST_URI']);
689
+    static $done = false;
690
+    static $propre = '';
691
+    if (!is_null($reset)) {
692
+        return $propre = $reset;
693
+    }
694
+    if ($done) {
695
+        return $propre;
696
+    }
697
+    $done = true;
698
+    return $propre = nettoyer_uri_var($GLOBALS['REQUEST_URI']);
700 699
 }
701 700
 
702 701
 /**
@@ -708,13 +707,13 @@  discard block
 block discarded – undo
708 707
  * @return string
709 708
  */
710 709
 function nettoyer_uri_var($request_uri) {
711
-	$uri1 = $request_uri;
712
-	do {
713
-		$uri = $uri1;
714
-		$uri1 = preg_replace(',([?&])(var_[^=&]*|PHPSESSID|fbclid|utm_[^=&]*)=[^&]*(&|$),i',
715
-			'\1', $uri);
716
-	} while ($uri <> $uri1);
717
-	return preg_replace(',[?&]$,', '', $uri1);
710
+    $uri1 = $request_uri;
711
+    do {
712
+        $uri = $uri1;
713
+        $uri1 = preg_replace(',([?&])(var_[^=&]*|PHPSESSID|fbclid|utm_[^=&]*)=[^&]*(&|$),i',
714
+            '\1', $uri);
715
+    } while ($uri <> $uri1);
716
+    return preg_replace(',[?&]$,', '', $uri1);
718 717
 }
719 718
 
720 719
 
@@ -728,47 +727,47 @@  discard block
 block discarded – undo
728 727
  *    URL vers soi-même
729 728
  **/
730 729
 function self($amp = '&amp;', $root = false) {
731
-	$url = nettoyer_uri();
732
-	if (!$root
733
-		and (
734
-			// si pas de profondeur on peut tronquer
735
-			$GLOBALS['profondeur_url'] < (_DIR_RESTREINT ? 1 : 2)
736
-			// sinon c'est OK si _SET_HTML_BASE a ete force a false
737
-			or (defined('_SET_HTML_BASE') and !_SET_HTML_BASE))
738
-	) {
739
-		$url = preg_replace(',^[^?]*/,', '', $url);
740
-	}
741
-	// ajouter le cas echeant les variables _POST['id_...']
742
-	foreach ($_POST as $v => $c) {
743
-		if (substr($v, 0, 3) == 'id_') {
744
-			$url = parametre_url($url, $v, $c, '&');
745
-		}
746
-	}
747
-
748
-	// supprimer les variables sans interet
749
-	if (test_espace_prive()) {
750
-		$url = preg_replace(',([?&])('
751
-			. 'lang|show_docs|'
752
-			. 'changer_lang|var_lang|action)=[^&]*,i', '\1', $url);
753
-		$url = preg_replace(',([?&])[&]+,', '\1', $url);
754
-		$url = preg_replace(',[&]$,', '\1', $url);
755
-	}
756
-
757
-	// eviter les hacks
758
-	include_spip('inc/filtres_mini');
759
-	$url = spip_htmlspecialchars($url);
730
+    $url = nettoyer_uri();
731
+    if (!$root
732
+        and (
733
+            // si pas de profondeur on peut tronquer
734
+            $GLOBALS['profondeur_url'] < (_DIR_RESTREINT ? 1 : 2)
735
+            // sinon c'est OK si _SET_HTML_BASE a ete force a false
736
+            or (defined('_SET_HTML_BASE') and !_SET_HTML_BASE))
737
+    ) {
738
+        $url = preg_replace(',^[^?]*/,', '', $url);
739
+    }
740
+    // ajouter le cas echeant les variables _POST['id_...']
741
+    foreach ($_POST as $v => $c) {
742
+        if (substr($v, 0, 3) == 'id_') {
743
+            $url = parametre_url($url, $v, $c, '&');
744
+        }
745
+    }
746
+
747
+    // supprimer les variables sans interet
748
+    if (test_espace_prive()) {
749
+        $url = preg_replace(',([?&])('
750
+            . 'lang|show_docs|'
751
+            . 'changer_lang|var_lang|action)=[^&]*,i', '\1', $url);
752
+        $url = preg_replace(',([?&])[&]+,', '\1', $url);
753
+        $url = preg_replace(',[&]$,', '\1', $url);
754
+    }
755
+
756
+    // eviter les hacks
757
+    include_spip('inc/filtres_mini');
758
+    $url = spip_htmlspecialchars($url);
760 759
 	
761
-	$url = str_replace(array("'", '"', '<', '[', ']', ':'), array('%27', '%22', '%3C', '%5B', '%5D', '%3A'), $url);
760
+    $url = str_replace(array("'", '"', '<', '[', ']', ':'), array('%27', '%22', '%3C', '%5B', '%5D', '%3A'), $url);
762 761
 
763
-	// &amp; ?
764
-	if ($amp != '&amp;') {
765
-		$url = str_replace('&amp;', $amp, $url);
766
-	}
762
+    // &amp; ?
763
+    if ($amp != '&amp;') {
764
+        $url = str_replace('&amp;', $amp, $url);
765
+    }
767 766
 
768
-	// Si ca demarre par ? ou vide, donner './'
769
-	$url = preg_replace(',^([?].*)?$,', './\1', $url);
767
+    // Si ca demarre par ? ou vide, donner './'
768
+    $url = preg_replace(',^([?].*)?$,', './\1', $url);
770 769
 
771
-	return $url;
770
+    return $url;
772 771
 }
773 772
 
774 773
 
@@ -779,7 +778,7 @@  discard block
 block discarded – undo
779 778
  *     true si c'est le cas, false sinon.
780 779
  */
781 780
 function test_espace_prive() {
782
-	return defined('_ESPACE_PRIVE') ? _ESPACE_PRIVE : false;
781
+    return defined('_ESPACE_PRIVE') ? _ESPACE_PRIVE : false;
783 782
 }
784 783
 
785 784
 /**
@@ -789,7 +788,7 @@  discard block
 block discarded – undo
789 788
  * @return bool
790 789
  */
791 790
 function test_plugin_actif($plugin) {
792
-	return ($plugin and defined('_DIR_PLUGIN_' . strtoupper($plugin))) ? true : false;
791
+    return ($plugin and defined('_DIR_PLUGIN_' . strtoupper($plugin))) ? true : false;
793 792
 }
794 793
 
795 794
 /**
@@ -820,51 +819,51 @@  discard block
 block discarded – undo
820 819
  *     Texte
821 820
  */
822 821
 function _T($texte, $args = array(), $options = array()) {
823
-	static $traduire = false;
824
-	$o = array('class' => '', 'force' => true, 'sanitize' => true);
825
-	if ($options) {
826
-		// support de l'ancien argument $class
827
-		if (is_string($options)) {
828
-			$options = array('class' => $options);
829
-		}
830
-		$o = array_merge($o, $options);
831
-	}
822
+    static $traduire = false;
823
+    $o = array('class' => '', 'force' => true, 'sanitize' => true);
824
+    if ($options) {
825
+        // support de l'ancien argument $class
826
+        if (is_string($options)) {
827
+            $options = array('class' => $options);
828
+        }
829
+        $o = array_merge($o, $options);
830
+    }
832 831
 
833
-	if (!$traduire) {
834
-		$traduire = charger_fonction('traduire', 'inc');
835
-		include_spip('inc/lang');
836
-	}
832
+    if (!$traduire) {
833
+        $traduire = charger_fonction('traduire', 'inc');
834
+        include_spip('inc/lang');
835
+    }
837 836
 
838
-	// On peut passer explicitement la langue dans le tableau
839
-	// On utilise le même nom de variable que la globale
840
-	if (isset($args['spip_lang'])) {
841
-		$lang = $args['spip_lang'];
842
-		// On l'enleve pour ne pas le passer au remplacement
843
-		unset($args['spip_lang']);
844
-	} // Sinon on prend la langue du contexte
845
-	else {
846
-		$lang = $GLOBALS['spip_lang'];
847
-	}
848
-	$text = $traduire($texte, $lang);
837
+    // On peut passer explicitement la langue dans le tableau
838
+    // On utilise le même nom de variable que la globale
839
+    if (isset($args['spip_lang'])) {
840
+        $lang = $args['spip_lang'];
841
+        // On l'enleve pour ne pas le passer au remplacement
842
+        unset($args['spip_lang']);
843
+    } // Sinon on prend la langue du contexte
844
+    else {
845
+        $lang = $GLOBALS['spip_lang'];
846
+    }
847
+    $text = $traduire($texte, $lang);
849 848
 
850
-	if (!strlen($text)) {
851
-		if (!$o['force']) {
852
-			return '';
853
-		}
849
+    if (!strlen($text)) {
850
+        if (!$o['force']) {
851
+            return '';
852
+        }
854 853
 
855
-		$text = $texte;
854
+        $text = $texte;
856 855
 
857
-		// pour les chaines non traduites, assurer un service minimum
858
-		if (!$GLOBALS['test_i18n'] and (_request('var_mode') != 'traduction')) {
859
-			$text = str_replace('_', ' ',
860
-				(($n = strpos($text, ':')) === false ? $texte :
861
-					substr($texte, $n + 1)));
862
-		}
863
-		$o['class'] = null;
856
+        // pour les chaines non traduites, assurer un service minimum
857
+        if (!$GLOBALS['test_i18n'] and (_request('var_mode') != 'traduction')) {
858
+            $text = str_replace('_', ' ',
859
+                (($n = strpos($text, ':')) === false ? $texte :
860
+                    substr($texte, $n + 1)));
861
+        }
862
+        $o['class'] = null;
864 863
 
865
-	}
864
+    }
866 865
 
867
-	return _L($text, $args, $o);
866
+    return _L($text, $args, $o);
868 867
 
869 868
 }
870 869
 
@@ -892,53 +891,53 @@  discard block
 block discarded – undo
892 891
  *     Texte
893 892
  */
894 893
 function _L($text, $args = array(), $options = array()) {
895
-	$f = $text;
896
-	$defaut_options = array(
897
-		'class' => null,
898
-		'sanitize' => true,
899
-	);
900
-	// support de l'ancien argument $class
901
-	if ($options and is_string($options)) {
902
-		$options = array('class' => $options);
903
-	}
904
-	if (is_array($options)) {
905
-		$options += $defaut_options;
906
-	} else {
907
-		$options = $defaut_options;
908
-	}
909
-
910
-	if (is_array($args) and count($args)) {
911
-		if (!function_exists('interdire_scripts')) {
912
-			include_spip('inc/texte');
913
-		}
914
-		if (!function_exists('echapper_html_suspect')) {
915
-			include_spip('inc/texte_mini');
916
-		}
917
-		foreach ($args as $name => $value) {
918
-			if (strpos($text, "@$name@") !== false) {
919
-				if ($options['sanitize']) {
920
-					$value = echapper_html_suspect($value);
921
-					$value = interdire_scripts($value, -1);
922
-				}
923
-				if (!empty($options['class'])) {
924
-					$value = "<span class='".$options['class']."'>$value</span>";
925
-				}
926
-				$text = str_replace("@$name@", $value, $text);
927
-				unset($args[$name]);
928
-			}
929
-		}
930
-		// Si des variables n'ont pas ete inserees, le signaler
931
-		// (chaines de langues pas a jour)
932
-		if ($args) {
933
-			spip_log("$f:  variables inutilisees " . join(', ', array_keys($args)), _LOG_DEBUG);
934
-		}
935
-	}
936
-
937
-	if (($GLOBALS['test_i18n'] or (_request('var_mode') == 'traduction')) and is_null($options['class'])) {
938
-		return "<span class=debug-traduction-erreur>$text</span>";
939
-	} else {
940
-		return $text;
941
-	}
894
+    $f = $text;
895
+    $defaut_options = array(
896
+        'class' => null,
897
+        'sanitize' => true,
898
+    );
899
+    // support de l'ancien argument $class
900
+    if ($options and is_string($options)) {
901
+        $options = array('class' => $options);
902
+    }
903
+    if (is_array($options)) {
904
+        $options += $defaut_options;
905
+    } else {
906
+        $options = $defaut_options;
907
+    }
908
+
909
+    if (is_array($args) and count($args)) {
910
+        if (!function_exists('interdire_scripts')) {
911
+            include_spip('inc/texte');
912
+        }
913
+        if (!function_exists('echapper_html_suspect')) {
914
+            include_spip('inc/texte_mini');
915
+        }
916
+        foreach ($args as $name => $value) {
917
+            if (strpos($text, "@$name@") !== false) {
918
+                if ($options['sanitize']) {
919
+                    $value = echapper_html_suspect($value);
920
+                    $value = interdire_scripts($value, -1);
921
+                }
922
+                if (!empty($options['class'])) {
923
+                    $value = "<span class='".$options['class']."'>$value</span>";
924
+                }
925
+                $text = str_replace("@$name@", $value, $text);
926
+                unset($args[$name]);
927
+            }
928
+        }
929
+        // Si des variables n'ont pas ete inserees, le signaler
930
+        // (chaines de langues pas a jour)
931
+        if ($args) {
932
+            spip_log("$f:  variables inutilisees " . join(', ', array_keys($args)), _LOG_DEBUG);
933
+        }
934
+    }
935
+
936
+    if (($GLOBALS['test_i18n'] or (_request('var_mode') == 'traduction')) and is_null($options['class'])) {
937
+        return "<span class=debug-traduction-erreur>$text</span>";
938
+    } else {
939
+        return $text;
940
+    }
942 941
 }
943 942
 
944 943
 
@@ -952,13 +951,13 @@  discard block
 block discarded – undo
952 951
  * @return string
953 952
  */
954 953
 function joli_repertoire($rep) {
955
-	$a = substr($rep, 0, 1);
956
-	if ($a <> '.' and $a <> '/') {
957
-		$rep = (_DIR_RESTREINT ? '' : _DIR_RESTREINT_ABS) . $rep;
958
-	}
959
-	$rep = preg_replace(',(^\.\.\/),', '', $rep);
954
+    $a = substr($rep, 0, 1);
955
+    if ($a <> '.' and $a <> '/') {
956
+        $rep = (_DIR_RESTREINT ? '' : _DIR_RESTREINT_ABS) . $rep;
957
+    }
958
+    $rep = preg_replace(',(^\.\.\/),', '', $rep);
960 959
 
961
-	return $rep;
960
+    return $rep;
962 961
 }
963 962
 
964 963
 
@@ -983,33 +982,33 @@  discard block
 block discarded – undo
983 982
  * @return float|int|string|void
984 983
  */
985 984
 function spip_timer($t = 'rien', $raw = false) {
986
-	static $time;
987
-	$a = time();
988
-	$b = microtime();
989
-	// microtime peut contenir les microsecondes et le temps
990
-	$b = explode(' ', $b);
991
-	if (count($b) == 2) {
992
-		$a = end($b);
993
-	} // plus precis !
994
-	$b = reset($b);
995
-	if (!isset($time[$t])) {
996
-		$time[$t] = $a + $b;
997
-	} else {
998
-		$p = ($a + $b - $time[$t]) * 1000;
999
-		unset($time[$t]);
985
+    static $time;
986
+    $a = time();
987
+    $b = microtime();
988
+    // microtime peut contenir les microsecondes et le temps
989
+    $b = explode(' ', $b);
990
+    if (count($b) == 2) {
991
+        $a = end($b);
992
+    } // plus precis !
993
+    $b = reset($b);
994
+    if (!isset($time[$t])) {
995
+        $time[$t] = $a + $b;
996
+    } else {
997
+        $p = ($a + $b - $time[$t]) * 1000;
998
+        unset($time[$t]);
1000 999
 #			echo "'$p'";exit;
1001
-		if ($raw) {
1002
-			return $p;
1003
-		}
1004
-		if ($p < 1000) {
1005
-			$s = '';
1006
-		} else {
1007
-			$s = sprintf("%d ", $x = floor($p / 1000));
1008
-			$p -= ($x * 1000);
1009
-		}
1000
+        if ($raw) {
1001
+            return $p;
1002
+        }
1003
+        if ($p < 1000) {
1004
+            $s = '';
1005
+        } else {
1006
+            $s = sprintf("%d ", $x = floor($p / 1000));
1007
+            $p -= ($x * 1000);
1008
+        }
1010 1009
 
1011
-		return $s . sprintf($s ? "%07.3f ms" : "%.3f ms", $p);
1012
-	}
1010
+        return $s . sprintf($s ? "%07.3f ms" : "%.3f ms", $p);
1011
+    }
1013 1012
 }
1014 1013
 
1015 1014
 
@@ -1017,21 +1016,21 @@  discard block
 block discarded – undo
1017 1016
 // sinon renvoie True et le date sauf si ca n'est pas souhaite
1018 1017
 // https://code.spip.net/@spip_touch
1019 1018
 function spip_touch($fichier, $duree = 0, $touch = true) {
1020
-	if ($duree) {
1021
-		clearstatcache();
1022
-		if ((@$f = filemtime($fichier)) and ($f >= time() - $duree)) {
1023
-			return false;
1024
-		}
1025
-	}
1026
-	if ($touch !== false) {
1027
-		if (!@touch($fichier)) {
1028
-			spip_unlink($fichier);
1029
-			@touch($fichier);
1030
-		};
1031
-		@chmod($fichier, _SPIP_CHMOD & ~0111);
1032
-	}
1019
+    if ($duree) {
1020
+        clearstatcache();
1021
+        if ((@$f = filemtime($fichier)) and ($f >= time() - $duree)) {
1022
+            return false;
1023
+        }
1024
+    }
1025
+    if ($touch !== false) {
1026
+        if (!@touch($fichier)) {
1027
+            spip_unlink($fichier);
1028
+            @touch($fichier);
1029
+        };
1030
+        @chmod($fichier, _SPIP_CHMOD & ~0111);
1031
+    }
1033 1032
 
1034
-	return true;
1033
+    return true;
1035 1034
 }
1036 1035
 
1037 1036
 
@@ -1043,11 +1042,11 @@  discard block
 block discarded – undo
1043 1042
  * @uses cron()
1044 1043
  **/
1045 1044
 function action_cron() {
1046
-	include_spip('inc/headers');
1047
-	http_status(204); // No Content
1048
-	header("Connection: close");
1049
-	define('_DIRECT_CRON_FORCE', true);
1050
-	cron();
1045
+    include_spip('inc/headers');
1046
+    http_status(204); // No Content
1047
+    header("Connection: close");
1048
+    define('_DIRECT_CRON_FORCE', true);
1049
+    cron();
1051 1050
 }
1052 1051
 
1053 1052
 /**
@@ -1063,26 +1062,26 @@  discard block
 block discarded – undo
1063 1062
  *     True si la tache a pu être effectuée
1064 1063
  */
1065 1064
 function cron($taches = array(), $taches_old = array()) {
1066
-	// si pas en mode cron force, laisser tomber.
1067
-	if (!defined('_DIRECT_CRON_FORCE')) {
1068
-		return false;
1069
-	}
1070
-	if (!is_array($taches)) {
1071
-		$taches = $taches_old;
1072
-	} // compat anciens appels
1073
-	// si taches a inserer en base et base inaccessible, laisser tomber
1074
-	// sinon on ne verifie pas la connexion tout de suite, car si ca se trouve
1075
-	// queue_sleep_time_to_next_job() dira qu'il n'y a rien a faire
1076
-	// et on evite d'ouvrir une connexion pour rien (utilisation de _DIRECT_CRON_FORCE dans mes_options.php)
1077
-	if ($taches and count($taches) and !spip_connect()) {
1078
-		return false;
1079
-	}
1080
-	spip_log("cron !", 'jq' . _LOG_DEBUG);
1081
-	if ($genie = charger_fonction('genie', 'inc', true)) {
1082
-		return $genie($taches);
1083
-	}
1084
-
1085
-	return false;
1065
+    // si pas en mode cron force, laisser tomber.
1066
+    if (!defined('_DIRECT_CRON_FORCE')) {
1067
+        return false;
1068
+    }
1069
+    if (!is_array($taches)) {
1070
+        $taches = $taches_old;
1071
+    } // compat anciens appels
1072
+    // si taches a inserer en base et base inaccessible, laisser tomber
1073
+    // sinon on ne verifie pas la connexion tout de suite, car si ca se trouve
1074
+    // queue_sleep_time_to_next_job() dira qu'il n'y a rien a faire
1075
+    // et on evite d'ouvrir une connexion pour rien (utilisation de _DIRECT_CRON_FORCE dans mes_options.php)
1076
+    if ($taches and count($taches) and !spip_connect()) {
1077
+        return false;
1078
+    }
1079
+    spip_log("cron !", 'jq' . _LOG_DEBUG);
1080
+    if ($genie = charger_fonction('genie', 'inc', true)) {
1081
+        return $genie($taches);
1082
+    }
1083
+
1084
+    return false;
1086 1085
 }
1087 1086
 
1088 1087
 /**
@@ -1114,17 +1113,17 @@  discard block
 block discarded – undo
1114 1113
  *     Le numéro de travail ajouté ou `0` si aucun travail n’a été ajouté.
1115 1114
  */
1116 1115
 function job_queue_add(
1117
-	$function,
1118
-	$description,
1119
-	$arguments = array(),
1120
-	$file = '',
1121
-	$no_duplicate = false,
1122
-	$time = 0,
1123
-	$priority = 0
1116
+    $function,
1117
+    $description,
1118
+    $arguments = array(),
1119
+    $file = '',
1120
+    $no_duplicate = false,
1121
+    $time = 0,
1122
+    $priority = 0
1124 1123
 ) {
1125
-	include_spip('inc/queue');
1124
+    include_spip('inc/queue');
1126 1125
 
1127
-	return queue_add_job($function, $description, $arguments, $file, $no_duplicate, $time, $priority);
1126
+    return queue_add_job($function, $description, $arguments, $file, $no_duplicate, $time, $priority);
1128 1127
 }
1129 1128
 
1130 1129
 /**
@@ -1135,9 +1134,9 @@  discard block
 block discarded – undo
1135 1134
  * @return bool
1136 1135
  */
1137 1136
 function job_queue_remove($id_job) {
1138
-	include_spip('inc/queue');
1137
+    include_spip('inc/queue');
1139 1138
 
1140
-	return queue_remove_job($id_job);
1139
+    return queue_remove_job($id_job);
1141 1140
 }
1142 1141
 
1143 1142
 /**
@@ -1150,9 +1149,9 @@  discard block
 block discarded – undo
1150 1149
  *     or an array of simple array to link multiples objet in one time
1151 1150
  */
1152 1151
 function job_queue_link($id_job, $objets) {
1153
-	include_spip('inc/queue');
1152
+    include_spip('inc/queue');
1154 1153
 
1155
-	return queue_link_job($id_job, $objets);
1154
+    return queue_link_job($id_job, $objets);
1156 1155
 }
1157 1156
 
1158 1157
 
@@ -1172,36 +1171,36 @@  discard block
 block discarded – undo
1172 1171
  *  - `null` si la queue n'est pas encore initialisée
1173 1172
  */
1174 1173
 function queue_sleep_time_to_next_job($force = null) {
1175
-	static $queue_next_job_time = -1;
1176
-	if ($force === true) {
1177
-		$queue_next_job_time = -1;
1178
-	} elseif ($force) {
1179
-		$queue_next_job_time = $force;
1180
-	}
1181
-
1182
-	if ($queue_next_job_time == -1) {
1183
-		if (!defined('_JQ_NEXT_JOB_TIME_FILENAME')) {
1184
-			define('_JQ_NEXT_JOB_TIME_FILENAME', _DIR_TMP . "job_queue_next.txt");
1185
-		}
1186
-		// utiliser un cache memoire si dispo
1187
-		if (function_exists("cache_get") and defined('_MEMOIZE_MEMORY') and _MEMOIZE_MEMORY) {
1188
-			$queue_next_job_time = cache_get(_JQ_NEXT_JOB_TIME_FILENAME);
1189
-		} else {
1190
-			$queue_next_job_time = null;
1191
-			if (lire_fichier(_JQ_NEXT_JOB_TIME_FILENAME, $contenu)) {
1192
-				$queue_next_job_time = intval($contenu);
1193
-			}
1194
-		}
1195
-	}
1196
-
1197
-	if (is_null($queue_next_job_time)) {
1198
-		return null;
1199
-	}
1200
-	if (!$_SERVER['REQUEST_TIME']) {
1201
-		$_SERVER['REQUEST_TIME'] = time();
1202
-	}
1203
-
1204
-	return $queue_next_job_time - $_SERVER['REQUEST_TIME'];
1174
+    static $queue_next_job_time = -1;
1175
+    if ($force === true) {
1176
+        $queue_next_job_time = -1;
1177
+    } elseif ($force) {
1178
+        $queue_next_job_time = $force;
1179
+    }
1180
+
1181
+    if ($queue_next_job_time == -1) {
1182
+        if (!defined('_JQ_NEXT_JOB_TIME_FILENAME')) {
1183
+            define('_JQ_NEXT_JOB_TIME_FILENAME', _DIR_TMP . "job_queue_next.txt");
1184
+        }
1185
+        // utiliser un cache memoire si dispo
1186
+        if (function_exists("cache_get") and defined('_MEMOIZE_MEMORY') and _MEMOIZE_MEMORY) {
1187
+            $queue_next_job_time = cache_get(_JQ_NEXT_JOB_TIME_FILENAME);
1188
+        } else {
1189
+            $queue_next_job_time = null;
1190
+            if (lire_fichier(_JQ_NEXT_JOB_TIME_FILENAME, $contenu)) {
1191
+                $queue_next_job_time = intval($contenu);
1192
+            }
1193
+        }
1194
+    }
1195
+
1196
+    if (is_null($queue_next_job_time)) {
1197
+        return null;
1198
+    }
1199
+    if (!$_SERVER['REQUEST_TIME']) {
1200
+        $_SERVER['REQUEST_TIME'] = time();
1201
+    }
1202
+
1203
+    return $queue_next_job_time - $_SERVER['REQUEST_TIME'];
1205 1204
 }
1206 1205
 
1207 1206
 
@@ -1213,9 +1212,9 @@  discard block
 block discarded – undo
1213 1212
  * @return string
1214 1213
  */
1215 1214
 function quote_amp($u) {
1216
-	return preg_replace(
1217
-		"/&(?![a-z]{0,4}\w{2,3};|#x?[0-9a-f]{2,6};)/i",
1218
-		"&amp;", $u);
1215
+    return preg_replace(
1216
+        "/&(?![a-z]{0,4}\w{2,3};|#x?[0-9a-f]{2,6};)/i",
1217
+        "&amp;", $u);
1219 1218
 }
1220 1219
 
1221 1220
 
@@ -1238,27 +1237,27 @@  discard block
 block discarded – undo
1238 1237
  *     Balise HTML `<script>` et son contenu
1239 1238
  **/
1240 1239
 function http_script($script, $src = '', $noscript = '') {
1241
-	static $done = array();
1240
+    static $done = array();
1242 1241
 
1243
-	if ($src && !isset($done[$src])) {
1244
-		$done[$src] = true;
1245
-		$src = find_in_path($src, _JAVASCRIPT);
1246
-		$src = " src='$src'";
1247
-	} else {
1248
-		$src = '';
1249
-	}
1250
-	if ($script) {
1251
-		$script = ("/*<![CDATA[*/\n" .
1252
-			preg_replace(',</([^>]*)>,', '<\/\1>', $script) .
1253
-			"/*]]>*/");
1254
-	}
1255
-	if ($noscript) {
1256
-		$noscript = "<noscript>\n\t$noscript\n</noscript>\n";
1257
-	}
1242
+    if ($src && !isset($done[$src])) {
1243
+        $done[$src] = true;
1244
+        $src = find_in_path($src, _JAVASCRIPT);
1245
+        $src = " src='$src'";
1246
+    } else {
1247
+        $src = '';
1248
+    }
1249
+    if ($script) {
1250
+        $script = ("/*<![CDATA[*/\n" .
1251
+            preg_replace(',</([^>]*)>,', '<\/\1>', $script) .
1252
+            "/*]]>*/");
1253
+    }
1254
+    if ($noscript) {
1255
+        $noscript = "<noscript>\n\t$noscript\n</noscript>\n";
1256
+    }
1258 1257
 
1259
-	return ($src or $script or $noscript)
1260
-		? "<script type='text/javascript'$src>$script</script>$noscript"
1261
-		: '';
1258
+    return ($src or $script or $noscript)
1259
+        ? "<script type='text/javascript'$src>$script</script>$noscript"
1260
+        : '';
1262 1261
 }
1263 1262
 
1264 1263
 
@@ -1293,7 +1292,7 @@  discard block
 block discarded – undo
1293 1292
  *     Texte échappé
1294 1293
  **/
1295 1294
 function texte_script($texte) {
1296
-	return str_replace('\'', '\\\'', str_replace('\\', '\\\\', $texte));
1295
+    return str_replace('\'', '\\\'', str_replace('\\', '\\\\', $texte));
1297 1296
 }
1298 1297
 
1299 1298
 
@@ -1330,69 +1329,69 @@  discard block
 block discarded – undo
1330 1329
  *     Liste des chemins, par ordre de priorité.
1331 1330
  **/
1332 1331
 function _chemin($dir_path = null) {
1333
-	static $path_base = null;
1334
-	static $path_full = null;
1335
-	if ($path_base == null) {
1336
-		// Chemin standard depuis l'espace public
1337
-		$path = defined('_SPIP_PATH') ? _SPIP_PATH :
1338
-			_DIR_RACINE . ':' .
1339
-			_DIR_RACINE . 'squelettes-dist/:' .
1340
-			_DIR_RACINE . 'prive/:' .
1341
-			_DIR_RESTREINT;
1342
-		// Ajouter squelettes/
1343
-		if (@is_dir(_DIR_RACINE . 'squelettes')) {
1344
-			$path = _DIR_RACINE . 'squelettes/:' . $path;
1345
-		}
1346
-		foreach (explode(':', $path) as $dir) {
1347
-			if (strlen($dir) and substr($dir, -1) != '/') {
1348
-				$dir .= "/";
1349
-			}
1350
-			$path_base[] = $dir;
1351
-		}
1352
-		$path_full = $path_base;
1353
-		// Et le(s) dossier(s) des squelettes nommes
1354
-		if (strlen($GLOBALS['dossier_squelettes'])) {
1355
-			foreach (array_reverse(explode(':', $GLOBALS['dossier_squelettes'])) as $d) {
1356
-				array_unshift($path_full, ($d[0] == '/' ? '' : _DIR_RACINE) . $d . '/');
1357
-			}
1358
-		}
1359
-		$GLOBALS['path_sig'] = md5(serialize($path_full));
1360
-	}
1361
-	if ($dir_path === null) {
1362
-		return $path_full;
1363
-	}
1364
-
1365
-	if (strlen($dir_path)) {
1366
-		$tete = "";
1367
-		if (reset($path_base) == _DIR_RACINE . 'squelettes/') {
1368
-			$tete = array_shift($path_base);
1369
-		}
1370
-		$dirs = array_reverse(explode(':', $dir_path));
1371
-		foreach ($dirs as $dir_path) {
1372
-			#if ($dir_path{0}!='/')
1373
-			#	$dir_path = $dir_path;
1374
-			if (substr($dir_path, -1) != '/') {
1375
-				$dir_path .= "/";
1376
-			}
1377
-			if (!in_array($dir_path, $path_base)) {
1378
-				array_unshift($path_base, $dir_path);
1379
-			}
1380
-		}
1381
-		if (strlen($tete)) {
1382
-			array_unshift($path_base, $tete);
1383
-		}
1384
-	}
1385
-	$path_full = $path_base;
1386
-	// Et le(s) dossier(s) des squelettes nommes
1387
-	if (strlen($GLOBALS['dossier_squelettes'])) {
1388
-		foreach (array_reverse(explode(':', $GLOBALS['dossier_squelettes'])) as $d) {
1389
-			array_unshift($path_full, ((isset($d[0]) and $d[0] == '/') ? '' : _DIR_RACINE) . $d . '/');
1390
-		}
1391
-	}
1392
-
1393
-	$GLOBALS['path_sig'] = md5(serialize($path_full));
1394
-
1395
-	return $path_full;
1332
+    static $path_base = null;
1333
+    static $path_full = null;
1334
+    if ($path_base == null) {
1335
+        // Chemin standard depuis l'espace public
1336
+        $path = defined('_SPIP_PATH') ? _SPIP_PATH :
1337
+            _DIR_RACINE . ':' .
1338
+            _DIR_RACINE . 'squelettes-dist/:' .
1339
+            _DIR_RACINE . 'prive/:' .
1340
+            _DIR_RESTREINT;
1341
+        // Ajouter squelettes/
1342
+        if (@is_dir(_DIR_RACINE . 'squelettes')) {
1343
+            $path = _DIR_RACINE . 'squelettes/:' . $path;
1344
+        }
1345
+        foreach (explode(':', $path) as $dir) {
1346
+            if (strlen($dir) and substr($dir, -1) != '/') {
1347
+                $dir .= "/";
1348
+            }
1349
+            $path_base[] = $dir;
1350
+        }
1351
+        $path_full = $path_base;
1352
+        // Et le(s) dossier(s) des squelettes nommes
1353
+        if (strlen($GLOBALS['dossier_squelettes'])) {
1354
+            foreach (array_reverse(explode(':', $GLOBALS['dossier_squelettes'])) as $d) {
1355
+                array_unshift($path_full, ($d[0] == '/' ? '' : _DIR_RACINE) . $d . '/');
1356
+            }
1357
+        }
1358
+        $GLOBALS['path_sig'] = md5(serialize($path_full));
1359
+    }
1360
+    if ($dir_path === null) {
1361
+        return $path_full;
1362
+    }
1363
+
1364
+    if (strlen($dir_path)) {
1365
+        $tete = "";
1366
+        if (reset($path_base) == _DIR_RACINE . 'squelettes/') {
1367
+            $tete = array_shift($path_base);
1368
+        }
1369
+        $dirs = array_reverse(explode(':', $dir_path));
1370
+        foreach ($dirs as $dir_path) {
1371
+            #if ($dir_path{0}!='/')
1372
+            #	$dir_path = $dir_path;
1373
+            if (substr($dir_path, -1) != '/') {
1374
+                $dir_path .= "/";
1375
+            }
1376
+            if (!in_array($dir_path, $path_base)) {
1377
+                array_unshift($path_base, $dir_path);
1378
+            }
1379
+        }
1380
+        if (strlen($tete)) {
1381
+            array_unshift($path_base, $tete);
1382
+        }
1383
+    }
1384
+    $path_full = $path_base;
1385
+    // Et le(s) dossier(s) des squelettes nommes
1386
+    if (strlen($GLOBALS['dossier_squelettes'])) {
1387
+        foreach (array_reverse(explode(':', $GLOBALS['dossier_squelettes'])) as $d) {
1388
+            array_unshift($path_full, ((isset($d[0]) and $d[0] == '/') ? '' : _DIR_RACINE) . $d . '/');
1389
+        }
1390
+    }
1391
+
1392
+    $GLOBALS['path_sig'] = md5(serialize($path_full));
1393
+
1394
+    return $path_full;
1396 1395
 }
1397 1396
 
1398 1397
 /**
@@ -1405,76 +1404,76 @@  discard block
 block discarded – undo
1405 1404
  * @return array Liste de chemins
1406 1405
  **/
1407 1406
 function creer_chemin() {
1408
-	$path_a = _chemin();
1409
-	static $c = '';
1407
+    $path_a = _chemin();
1408
+    static $c = '';
1410 1409
 
1411
-	// on calcule le chemin si le dossier skel a change
1412
-	if ($c != $GLOBALS['dossier_squelettes']) {
1413
-		// assurer le non plantage lors de la montee de version :
1414
-		$c = $GLOBALS['dossier_squelettes'];
1415
-		$path_a = _chemin(''); // forcer un recalcul du chemin
1416
-	}
1410
+    // on calcule le chemin si le dossier skel a change
1411
+    if ($c != $GLOBALS['dossier_squelettes']) {
1412
+        // assurer le non plantage lors de la montee de version :
1413
+        $c = $GLOBALS['dossier_squelettes'];
1414
+        $path_a = _chemin(''); // forcer un recalcul du chemin
1415
+    }
1417 1416
 
1418
-	return $path_a;
1417
+    return $path_a;
1419 1418
 }
1420 1419
 
1421 1420
 
1422 1421
 function lister_themes_prives() {
1423
-	static $themes = null;
1424
-	if (is_null($themes)) {
1425
-		// si pas encore definie
1426
-		if (!defined('_SPIP_THEME_PRIVE')) {
1427
-			define('_SPIP_THEME_PRIVE', 'spip');
1428
-		}
1429
-		$themes = array(_SPIP_THEME_PRIVE);
1430
-		// lors d'une installation neuve, prefs n'est pas definie.
1431
-		if (isset($GLOBALS['visiteur_session']['prefs'])) {
1432
-			$prefs = $GLOBALS['visiteur_session']['prefs'];
1433
-		} else {
1434
-			$prefs = array();
1435
-		}
1436
-		if (is_string($prefs)) {
1437
-			$prefs = unserialize($GLOBALS['visiteur_session']['prefs']);
1438
-		}
1439
-		if (
1440
-			((isset($prefs['theme']) and $theme = $prefs['theme'])
1441
-				or (isset($GLOBALS['theme_prive_defaut']) and $theme = $GLOBALS['theme_prive_defaut']))
1442
-			and $theme != _SPIP_THEME_PRIVE
1443
-		) {
1444
-			array_unshift($themes, $theme);
1445
-		} // placer le theme choisi en tete
1446
-	}
1447
-
1448
-	return $themes;
1422
+    static $themes = null;
1423
+    if (is_null($themes)) {
1424
+        // si pas encore definie
1425
+        if (!defined('_SPIP_THEME_PRIVE')) {
1426
+            define('_SPIP_THEME_PRIVE', 'spip');
1427
+        }
1428
+        $themes = array(_SPIP_THEME_PRIVE);
1429
+        // lors d'une installation neuve, prefs n'est pas definie.
1430
+        if (isset($GLOBALS['visiteur_session']['prefs'])) {
1431
+            $prefs = $GLOBALS['visiteur_session']['prefs'];
1432
+        } else {
1433
+            $prefs = array();
1434
+        }
1435
+        if (is_string($prefs)) {
1436
+            $prefs = unserialize($GLOBALS['visiteur_session']['prefs']);
1437
+        }
1438
+        if (
1439
+            ((isset($prefs['theme']) and $theme = $prefs['theme'])
1440
+                or (isset($GLOBALS['theme_prive_defaut']) and $theme = $GLOBALS['theme_prive_defaut']))
1441
+            and $theme != _SPIP_THEME_PRIVE
1442
+        ) {
1443
+            array_unshift($themes, $theme);
1444
+        } // placer le theme choisi en tete
1445
+    }
1446
+
1447
+    return $themes;
1449 1448
 }
1450 1449
 
1451 1450
 function find_in_theme($file, $subdir = '', $include = false) {
1452
-	static $themefiles = array();
1453
-	if (isset($themefiles["$subdir$file"])) {
1454
-		return $themefiles["$subdir$file"];
1455
-	}
1456
-	// on peut fournir une icone generique -xx.svg qui fera le job dans toutes les tailles, et qui est prioritaire sur le png
1457
-	// si il y a un .svg a la bonne taille (-16.svg) a cote, on l'utilise en remplacement du -16.png
1458
-	if (preg_match(',-(\d+)[.](png|gif|svg)$,', $file, $m)
1459
-	  and $file_svg_generique = substr($file,0, -strlen($m[0])) . "-xx.svg"
1460
-		and $f = find_in_theme("$file_svg_generique")) {
1461
-		if ($fsize = substr($f,0,-6) . $m[1] . ".svg" and file_exists($fsize)) {
1462
-			return $themefiles["$subdir$file"] = $fsize;
1463
-		}
1464
-		else {
1465
-			return $themefiles["$subdir$file"] = "$f?".$m[1]."px";
1466
-		}
1467
-	}
1468
-
1469
-	$themes = lister_themes_prives();
1470
-	foreach ($themes as $theme) {
1471
-		if ($f = find_in_path($file, "prive/themes/$theme/$subdir", $include)) {
1472
-			return $themefiles["$subdir$file"] = $f;
1473
-		}
1474
-	}
1475
-	spip_log("$file introuvable dans le theme prive " . reset($themes), 'theme');
1476
-
1477
-	return $themefiles["$subdir$file"] = "";
1451
+    static $themefiles = array();
1452
+    if (isset($themefiles["$subdir$file"])) {
1453
+        return $themefiles["$subdir$file"];
1454
+    }
1455
+    // on peut fournir une icone generique -xx.svg qui fera le job dans toutes les tailles, et qui est prioritaire sur le png
1456
+    // si il y a un .svg a la bonne taille (-16.svg) a cote, on l'utilise en remplacement du -16.png
1457
+    if (preg_match(',-(\d+)[.](png|gif|svg)$,', $file, $m)
1458
+      and $file_svg_generique = substr($file,0, -strlen($m[0])) . "-xx.svg"
1459
+        and $f = find_in_theme("$file_svg_generique")) {
1460
+        if ($fsize = substr($f,0,-6) . $m[1] . ".svg" and file_exists($fsize)) {
1461
+            return $themefiles["$subdir$file"] = $fsize;
1462
+        }
1463
+        else {
1464
+            return $themefiles["$subdir$file"] = "$f?".$m[1]."px";
1465
+        }
1466
+    }
1467
+
1468
+    $themes = lister_themes_prives();
1469
+    foreach ($themes as $theme) {
1470
+        if ($f = find_in_path($file, "prive/themes/$theme/$subdir", $include)) {
1471
+            return $themefiles["$subdir$file"] = $f;
1472
+        }
1473
+    }
1474
+    spip_log("$file introuvable dans le theme prive " . reset($themes), 'theme');
1475
+
1476
+    return $themefiles["$subdir$file"] = "";
1478 1477
 }
1479 1478
 
1480 1479
 
@@ -1498,31 +1497,31 @@  discard block
 block discarded – undo
1498 1497
  *     sinon chaîne vide.
1499 1498
  **/
1500 1499
 function chemin_image($icone) {
1501
-	static $icone_renommer;
1502
-	if ($p = strpos($icone, '?')) {
1503
-		$icone = substr($icone,0, $p);
1504
-	}
1505
-	// gerer le cas d'un double appel en evitant de refaire le travail inutilement
1506
-	if (strpos($icone, "/") !== false and file_exists($icone)) {
1507
-		return $icone;
1508
-	}
1509
-
1510
-	// si c'est un nom d'image complet (article-24.png) essayer de le renvoyer direct
1511
-	if (preg_match(',[.](png|gif|jpg|webp|svg)$,', $icone) and $f = find_in_theme("images/$icone")) {
1512
-		return $f;
1513
-	}
1514
-	// sinon passer par le module de renommage
1515
-	if (is_null($icone_renommer)) {
1516
-		$icone_renommer = charger_fonction('icone_renommer', 'inc', true);
1517
-	}
1518
-	if ($icone_renommer) {
1519
-		list($icone, $fonction) = $icone_renommer($icone, "");
1520
-		if (file_exists($icone)) {
1521
-			return $icone;
1522
-		}
1523
-	}
1524
-
1525
-	return find_in_path($icone, _NOM_IMG_PACK);
1500
+    static $icone_renommer;
1501
+    if ($p = strpos($icone, '?')) {
1502
+        $icone = substr($icone,0, $p);
1503
+    }
1504
+    // gerer le cas d'un double appel en evitant de refaire le travail inutilement
1505
+    if (strpos($icone, "/") !== false and file_exists($icone)) {
1506
+        return $icone;
1507
+    }
1508
+
1509
+    // si c'est un nom d'image complet (article-24.png) essayer de le renvoyer direct
1510
+    if (preg_match(',[.](png|gif|jpg|webp|svg)$,', $icone) and $f = find_in_theme("images/$icone")) {
1511
+        return $f;
1512
+    }
1513
+    // sinon passer par le module de renommage
1514
+    if (is_null($icone_renommer)) {
1515
+        $icone_renommer = charger_fonction('icone_renommer', 'inc', true);
1516
+    }
1517
+    if ($icone_renommer) {
1518
+        list($icone, $fonction) = $icone_renommer($icone, "");
1519
+        if (file_exists($icone)) {
1520
+            return $icone;
1521
+        }
1522
+    }
1523
+
1524
+    return find_in_path($icone, _NOM_IMG_PACK);
1526 1525
 }
1527 1526
 
1528 1527
 //
@@ -1560,127 +1559,127 @@  discard block
 block discarded – undo
1560 1559
  *     - false : fichier introuvable
1561 1560
  **/
1562 1561
 function find_in_path($file, $dirname = '', $include = false) {
1563
-	static $dirs = array();
1564
-	static $inc = array(); # cf https://git.spip.net/spip/spip/commit/42e4e028e38c839121efaee84308d08aee307eec
1565
-	static $c = '';
1566
-
1567
-	if (!$file and !strlen($file)) {
1568
-		return false;
1569
-	}
1570
-
1571
-	// on calcule le chemin si le dossier skel a change
1572
-	if ($c != $GLOBALS['dossier_squelettes']) {
1573
-		// assurer le non plantage lors de la montee de version :
1574
-		$c = $GLOBALS['dossier_squelettes'];
1575
-		creer_chemin(); // forcer un recalcul du chemin et la mise a jour de path_sig
1576
-	}
1577
-
1578
-	if (isset($GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file])) {
1579
-		if (!$GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file]) {
1580
-			return false;
1581
-		}
1582
-		if ($include and !isset($inc[$dirname][$file])) {
1583
-			include_once _ROOT_CWD . $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file];
1584
-			$inc[$dirname][$file] = $inc[''][$dirname . $file] = true;
1585
-		}
1586
-
1587
-		return $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file];
1588
-	}
1589
-
1590
-	$a = strrpos($file, '/');
1591
-	if ($a !== false) {
1592
-		$dirname .= substr($file, 0, ++$a);
1593
-		$file = substr($file, $a);
1594
-	}
1595
-
1596
-	foreach (creer_chemin() as $dir) {
1597
-		if (!isset($dirs[$a = $dir . $dirname])) {
1598
-			$dirs[$a] = (is_dir(_ROOT_CWD . $a) || !$a);
1599
-		}
1600
-		if ($dirs[$a]) {
1601
-			if (file_exists(_ROOT_CWD . ($a .= $file))) {
1602
-				if ($include and !isset($inc[$dirname][$file])) {
1603
-					include_once _ROOT_CWD . $a;
1604
-					$inc[$dirname][$file] = $inc[''][$dirname . $file] = true;
1605
-				}
1606
-				if (!defined('_SAUVER_CHEMIN')) {
1607
-					// si le chemin n'a pas encore ete charge, ne pas lever le flag, ne pas cacher
1608
-					if (is_null($GLOBALS['path_files'])) {
1609
-						return $a;
1610
-					}
1611
-					define('_SAUVER_CHEMIN', true);
1612
-				}
1613
-
1614
-				return $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file] = $GLOBALS['path_files'][$GLOBALS['path_sig']][''][$dirname . $file] = $a;
1615
-			}
1616
-		}
1617
-	}
1618
-
1619
-	if ($include) {
1620
-		spip_log("include_spip $dirname$file non trouve");
1621
-		if ($include === 'required') {
1622
-			echo '<pre>',
1623
-			"<strong>Erreur Fatale</strong><br />";
1624
-			if (function_exists('debug_print_backtrace')) {
1625
-				echo debug_print_backtrace();
1626
-			}
1627
-			echo '</pre>';
1628
-			die("Erreur interne: ne peut inclure $dirname$file");
1629
-		}
1630
-	}
1631
-
1632
-	if (!defined('_SAUVER_CHEMIN')) {
1633
-		// si le chemin n'a pas encore ete charge, ne pas lever le flag, ne pas cacher
1634
-		if (is_null($GLOBALS['path_files'])) {
1635
-			return false;
1636
-		}
1637
-		define('_SAUVER_CHEMIN', true);
1638
-	}
1639
-
1640
-	return $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file] = $GLOBALS['path_files'][$GLOBALS['path_sig']][''][$dirname . $file] = false;
1562
+    static $dirs = array();
1563
+    static $inc = array(); # cf https://git.spip.net/spip/spip/commit/42e4e028e38c839121efaee84308d08aee307eec
1564
+    static $c = '';
1565
+
1566
+    if (!$file and !strlen($file)) {
1567
+        return false;
1568
+    }
1569
+
1570
+    // on calcule le chemin si le dossier skel a change
1571
+    if ($c != $GLOBALS['dossier_squelettes']) {
1572
+        // assurer le non plantage lors de la montee de version :
1573
+        $c = $GLOBALS['dossier_squelettes'];
1574
+        creer_chemin(); // forcer un recalcul du chemin et la mise a jour de path_sig
1575
+    }
1576
+
1577
+    if (isset($GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file])) {
1578
+        if (!$GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file]) {
1579
+            return false;
1580
+        }
1581
+        if ($include and !isset($inc[$dirname][$file])) {
1582
+            include_once _ROOT_CWD . $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file];
1583
+            $inc[$dirname][$file] = $inc[''][$dirname . $file] = true;
1584
+        }
1585
+
1586
+        return $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file];
1587
+    }
1588
+
1589
+    $a = strrpos($file, '/');
1590
+    if ($a !== false) {
1591
+        $dirname .= substr($file, 0, ++$a);
1592
+        $file = substr($file, $a);
1593
+    }
1594
+
1595
+    foreach (creer_chemin() as $dir) {
1596
+        if (!isset($dirs[$a = $dir . $dirname])) {
1597
+            $dirs[$a] = (is_dir(_ROOT_CWD . $a) || !$a);
1598
+        }
1599
+        if ($dirs[$a]) {
1600
+            if (file_exists(_ROOT_CWD . ($a .= $file))) {
1601
+                if ($include and !isset($inc[$dirname][$file])) {
1602
+                    include_once _ROOT_CWD . $a;
1603
+                    $inc[$dirname][$file] = $inc[''][$dirname . $file] = true;
1604
+                }
1605
+                if (!defined('_SAUVER_CHEMIN')) {
1606
+                    // si le chemin n'a pas encore ete charge, ne pas lever le flag, ne pas cacher
1607
+                    if (is_null($GLOBALS['path_files'])) {
1608
+                        return $a;
1609
+                    }
1610
+                    define('_SAUVER_CHEMIN', true);
1611
+                }
1612
+
1613
+                return $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file] = $GLOBALS['path_files'][$GLOBALS['path_sig']][''][$dirname . $file] = $a;
1614
+            }
1615
+        }
1616
+    }
1617
+
1618
+    if ($include) {
1619
+        spip_log("include_spip $dirname$file non trouve");
1620
+        if ($include === 'required') {
1621
+            echo '<pre>',
1622
+            "<strong>Erreur Fatale</strong><br />";
1623
+            if (function_exists('debug_print_backtrace')) {
1624
+                echo debug_print_backtrace();
1625
+            }
1626
+            echo '</pre>';
1627
+            die("Erreur interne: ne peut inclure $dirname$file");
1628
+        }
1629
+    }
1630
+
1631
+    if (!defined('_SAUVER_CHEMIN')) {
1632
+        // si le chemin n'a pas encore ete charge, ne pas lever le flag, ne pas cacher
1633
+        if (is_null($GLOBALS['path_files'])) {
1634
+            return false;
1635
+        }
1636
+        define('_SAUVER_CHEMIN', true);
1637
+    }
1638
+
1639
+    return $GLOBALS['path_files'][$GLOBALS['path_sig']][$dirname][$file] = $GLOBALS['path_files'][$GLOBALS['path_sig']][''][$dirname . $file] = false;
1641 1640
 }
1642 1641
 
1643 1642
 function clear_path_cache() {
1644
-	$GLOBALS['path_files'] = array();
1645
-	spip_unlink(_CACHE_CHEMIN);
1643
+    $GLOBALS['path_files'] = array();
1644
+    spip_unlink(_CACHE_CHEMIN);
1646 1645
 }
1647 1646
 
1648 1647
 function load_path_cache() {
1649
-	// charger le path des plugins
1650
-	if (@is_readable(_CACHE_PLUGINS_PATH)) {
1651
-		include_once(_CACHE_PLUGINS_PATH);
1652
-	}
1653
-	$GLOBALS['path_files'] = array();
1654
-	// si le visiteur est admin,
1655
-	// on ne recharge pas le cache pour forcer sa mise a jour
1656
-	if (
1657
-		// la session n'est pas encore chargee a ce moment, on ne peut donc pas s'y fier
1658
-		//AND (!isset($GLOBALS['visiteur_session']['statut']) OR $GLOBALS['visiteur_session']['statut']!='0minirezo')
1659
-		// utiliser le cookie est un pis aller qui marche 'en general'
1660
-		// on blinde par un second test au moment de la lecture de la session
1661
-		// !isset($_COOKIE[$GLOBALS['cookie_prefix'].'_admin'])
1662
-		// et en ignorant ce cache en cas de recalcul explicite
1663
-	!_request('var_mode')
1664
-	) {
1665
-		// on essaye de lire directement sans verrou pour aller plus vite
1666
-		if ($contenu = spip_file_get_contents(_CACHE_CHEMIN)) {
1667
-			// mais si semble corrompu on relit avec un verrou
1668
-			if (!$GLOBALS['path_files'] = unserialize($contenu)) {
1669
-				lire_fichier(_CACHE_CHEMIN, $contenu);
1670
-				if (!$GLOBALS['path_files'] = unserialize($contenu)) {
1671
-					$GLOBALS['path_files'] = array();
1672
-				}
1673
-			}
1674
-		}
1675
-	}
1648
+    // charger le path des plugins
1649
+    if (@is_readable(_CACHE_PLUGINS_PATH)) {
1650
+        include_once(_CACHE_PLUGINS_PATH);
1651
+    }
1652
+    $GLOBALS['path_files'] = array();
1653
+    // si le visiteur est admin,
1654
+    // on ne recharge pas le cache pour forcer sa mise a jour
1655
+    if (
1656
+        // la session n'est pas encore chargee a ce moment, on ne peut donc pas s'y fier
1657
+        //AND (!isset($GLOBALS['visiteur_session']['statut']) OR $GLOBALS['visiteur_session']['statut']!='0minirezo')
1658
+        // utiliser le cookie est un pis aller qui marche 'en general'
1659
+        // on blinde par un second test au moment de la lecture de la session
1660
+        // !isset($_COOKIE[$GLOBALS['cookie_prefix'].'_admin'])
1661
+        // et en ignorant ce cache en cas de recalcul explicite
1662
+    !_request('var_mode')
1663
+    ) {
1664
+        // on essaye de lire directement sans verrou pour aller plus vite
1665
+        if ($contenu = spip_file_get_contents(_CACHE_CHEMIN)) {
1666
+            // mais si semble corrompu on relit avec un verrou
1667
+            if (!$GLOBALS['path_files'] = unserialize($contenu)) {
1668
+                lire_fichier(_CACHE_CHEMIN, $contenu);
1669
+                if (!$GLOBALS['path_files'] = unserialize($contenu)) {
1670
+                    $GLOBALS['path_files'] = array();
1671
+                }
1672
+            }
1673
+        }
1674
+    }
1676 1675
 }
1677 1676
 
1678 1677
 function save_path_cache() {
1679
-	if (defined('_SAUVER_CHEMIN')
1680
-		and _SAUVER_CHEMIN
1681
-	) {
1682
-		ecrire_fichier(_CACHE_CHEMIN, serialize($GLOBALS['path_files']));
1683
-	}
1678
+    if (defined('_SAUVER_CHEMIN')
1679
+        and _SAUVER_CHEMIN
1680
+    ) {
1681
+        ecrire_fichier(_CACHE_CHEMIN, serialize($GLOBALS['path_files']));
1682
+    }
1684 1683
 }
1685 1684
 
1686 1685
 
@@ -1700,33 +1699,33 @@  discard block
 block discarded – undo
1700 1699
  * @return array
1701 1700
  */
1702 1701
 function find_all_in_path($dir, $pattern, $recurs = false) {
1703
-	$liste_fichiers = array();
1704
-	$maxfiles = 10000;
1705
-
1706
-	// cas borderline si dans mes_options on appelle redirige_par_entete qui utilise _T et charge un fichier de langue
1707
-	// on a pas encore inclus flock.php
1708
-	if (!function_exists('preg_files')) {
1709
-		include_once _ROOT_RESTREINT . 'inc/flock.php';
1710
-	}
1711
-
1712
-	// Parcourir le chemin
1713
-	foreach (creer_chemin() as $d) {
1714
-		$f = $d . $dir;
1715
-		if (@is_dir($f)) {
1716
-			$liste = preg_files($f, $pattern, $maxfiles - count($liste_fichiers), $recurs === true ? array() : $recurs);
1717
-			foreach ($liste as $chemin) {
1718
-				$nom = basename($chemin);
1719
-				// ne prendre que les fichiers pas deja trouves
1720
-				// car find_in_path prend le premier qu'il trouve,
1721
-				// les autres sont donc masques
1722
-				if (!isset($liste_fichiers[$nom])) {
1723
-					$liste_fichiers[$nom] = $chemin;
1724
-				}
1725
-			}
1726
-		}
1727
-	}
1728
-
1729
-	return $liste_fichiers;
1702
+    $liste_fichiers = array();
1703
+    $maxfiles = 10000;
1704
+
1705
+    // cas borderline si dans mes_options on appelle redirige_par_entete qui utilise _T et charge un fichier de langue
1706
+    // on a pas encore inclus flock.php
1707
+    if (!function_exists('preg_files')) {
1708
+        include_once _ROOT_RESTREINT . 'inc/flock.php';
1709
+    }
1710
+
1711
+    // Parcourir le chemin
1712
+    foreach (creer_chemin() as $d) {
1713
+        $f = $d . $dir;
1714
+        if (@is_dir($f)) {
1715
+            $liste = preg_files($f, $pattern, $maxfiles - count($liste_fichiers), $recurs === true ? array() : $recurs);
1716
+            foreach ($liste as $chemin) {
1717
+                $nom = basename($chemin);
1718
+                // ne prendre que les fichiers pas deja trouves
1719
+                // car find_in_path prend le premier qu'il trouve,
1720
+                // les autres sont donc masques
1721
+                if (!isset($liste_fichiers[$nom])) {
1722
+                    $liste_fichiers[$nom] = $chemin;
1723
+                }
1724
+            }
1725
+        }
1726
+    }
1727
+
1728
+    return $liste_fichiers;
1730 1729
 }
1731 1730
 
1732 1731
 /**
@@ -1738,17 +1737,17 @@  discard block
 block discarded – undo
1738 1737
  * @return bool
1739 1738
  */
1740 1739
 function autoriser_sans_cookie($nom, $strict = false) {
1741
-	static $autsanscookie = array('install', 'base_repair');
1740
+    static $autsanscookie = array('install', 'base_repair');
1742 1741
 
1743
-	if (in_array($nom, $autsanscookie)) {
1744
-		if (test_espace_prive()){
1745
-			include_spip('base/connect_sql');
1746
-			if (!$strict or !spip_connect()){
1747
-				return true;
1748
-			}
1749
-		}
1750
-	}
1751
-	return false;
1742
+    if (in_array($nom, $autsanscookie)) {
1743
+        if (test_espace_prive()){
1744
+            include_spip('base/connect_sql');
1745
+            if (!$strict or !spip_connect()){
1746
+                return true;
1747
+            }
1748
+        }
1749
+    }
1750
+    return false;
1752 1751
 }
1753 1752
 
1754 1753
 /**
@@ -1774,99 +1773,99 @@  discard block
 block discarded – undo
1774 1773
  *           (cas des raccourcis personalises [->spip20] : il faut implementer une fonction generer_url_spip et une fonction generer_url_ecrire_spip)
1775 1774
  */
1776 1775
 function generer_url_entite($id = '', $entite = '', $args = '', $ancre = '', $public = null, $type = null) {
1777
-	if ($public === null) {
1778
-		$public = !test_espace_prive();
1779
-	}
1780
-	$entite = objet_type($entite); // cas particulier d'appels sur objet/id_objet...
1781
-
1782
-	if (!$public) {
1783
-		if (!$entite) {
1784
-			return '';
1785
-		}
1786
-		if (!function_exists('generer_url_ecrire_objet')) {
1787
-			include_spip('inc/urls');
1788
-		}
1789
-		$res = generer_url_ecrire_objet($entite, $id, $args, $ancre, false);
1790
-	} else {
1791
-		if ($type === null) {
1792
-			$type = (isset($GLOBALS['type_urls']))
1793
-				? $GLOBALS['type_urls'] // pour surcharge via fichier d'options
1794
-				: ((isset($GLOBALS['meta']['type_urls'])) // sinon la config url_etendues
1795
-					? ($GLOBALS['meta']['type_urls']) : "page"); // sinon type "page" par défaut
1796
-		}
1797
-
1798
-		$f = charger_fonction($type, 'urls', true);
1799
-		// se rabattre sur les urls page si les urls perso non dispo
1800
-		if (!$f) {
1801
-			$f = charger_fonction('page', 'urls', true);
1802
-		}
1803
-
1804
-		// si $entite='', on veut la fonction de passage URL ==> id
1805
-		// sinon on veut effectuer le passage id ==> URL
1806
-		if (!$entite) {
1807
-			return $f;
1808
-		}
1809
-
1810
-		// mais d'abord il faut tester le cas des urls sur une
1811
-		// base distante
1812
-		if (is_string($public)
1813
-			and $g = charger_fonction('connect', 'urls', true)
1814
-		) {
1815
-			$f = $g;
1816
-		}
1817
-
1818
-		$res = $f(intval($id), $entite, $args, $ancre, $public);
1819
-
1820
-	}
1821
-	if ($res) {
1822
-		return $res;
1823
-	}
1824
-	// Sinon c'est un raccourci ou compat SPIP < 2
1825
-	if (!function_exists($f = 'generer_url_' . $entite)) {
1826
-		if (!function_exists($f .= '_dist')) {
1827
-			$f = '';
1828
-		}
1829
-	}
1830
-	if ($f) {
1831
-		$url = $f($id, $args, $ancre);
1832
-		if (strlen($args)) {
1833
-			$url .= strstr($url, '?')
1834
-				? '&amp;' . $args
1835
-				: '?' . $args;
1836
-		}
1837
-
1838
-		return $url;
1839
-	}
1840
-	// On a ete gentil mais la ....
1841
-	spip_log("generer_url_entite: entite $entite ($f) inconnue $type $public");
1842
-
1843
-	return '';
1776
+    if ($public === null) {
1777
+        $public = !test_espace_prive();
1778
+    }
1779
+    $entite = objet_type($entite); // cas particulier d'appels sur objet/id_objet...
1780
+
1781
+    if (!$public) {
1782
+        if (!$entite) {
1783
+            return '';
1784
+        }
1785
+        if (!function_exists('generer_url_ecrire_objet')) {
1786
+            include_spip('inc/urls');
1787
+        }
1788
+        $res = generer_url_ecrire_objet($entite, $id, $args, $ancre, false);
1789
+    } else {
1790
+        if ($type === null) {
1791
+            $type = (isset($GLOBALS['type_urls']))
1792
+                ? $GLOBALS['type_urls'] // pour surcharge via fichier d'options
1793
+                : ((isset($GLOBALS['meta']['type_urls'])) // sinon la config url_etendues
1794
+                    ? ($GLOBALS['meta']['type_urls']) : "page"); // sinon type "page" par défaut
1795
+        }
1796
+
1797
+        $f = charger_fonction($type, 'urls', true);
1798
+        // se rabattre sur les urls page si les urls perso non dispo
1799
+        if (!$f) {
1800
+            $f = charger_fonction('page', 'urls', true);
1801
+        }
1802
+
1803
+        // si $entite='', on veut la fonction de passage URL ==> id
1804
+        // sinon on veut effectuer le passage id ==> URL
1805
+        if (!$entite) {
1806
+            return $f;
1807
+        }
1808
+
1809
+        // mais d'abord il faut tester le cas des urls sur une
1810
+        // base distante
1811
+        if (is_string($public)
1812
+            and $g = charger_fonction('connect', 'urls', true)
1813
+        ) {
1814
+            $f = $g;
1815
+        }
1816
+
1817
+        $res = $f(intval($id), $entite, $args, $ancre, $public);
1818
+
1819
+    }
1820
+    if ($res) {
1821
+        return $res;
1822
+    }
1823
+    // Sinon c'est un raccourci ou compat SPIP < 2
1824
+    if (!function_exists($f = 'generer_url_' . $entite)) {
1825
+        if (!function_exists($f .= '_dist')) {
1826
+            $f = '';
1827
+        }
1828
+    }
1829
+    if ($f) {
1830
+        $url = $f($id, $args, $ancre);
1831
+        if (strlen($args)) {
1832
+            $url .= strstr($url, '?')
1833
+                ? '&amp;' . $args
1834
+                : '?' . $args;
1835
+        }
1836
+
1837
+        return $url;
1838
+    }
1839
+    // On a ete gentil mais la ....
1840
+    spip_log("generer_url_entite: entite $entite ($f) inconnue $type $public");
1841
+
1842
+    return '';
1844 1843
 }
1845 1844
 
1846 1845
 function generer_url_ecrire_entite_edit($id, $entite, $args = '', $ancre = '') {
1847
-	$exec = objet_info($entite, 'url_edit');
1848
-	$url = generer_url_ecrire($exec, $args);
1849
-	if (intval($id)) {
1850
-		$url = parametre_url($url, id_table_objet($entite), $id);
1851
-	} else {
1852
-		$url = parametre_url($url, 'new', 'oui');
1853
-	}
1854
-	if ($ancre) {
1855
-		$url = ancre_url($url, $ancre);
1856
-	}
1846
+    $exec = objet_info($entite, 'url_edit');
1847
+    $url = generer_url_ecrire($exec, $args);
1848
+    if (intval($id)) {
1849
+        $url = parametre_url($url, id_table_objet($entite), $id);
1850
+    } else {
1851
+        $url = parametre_url($url, 'new', 'oui');
1852
+    }
1853
+    if ($ancre) {
1854
+        $url = ancre_url($url, $ancre);
1855
+    }
1857 1856
 
1858
-	return $url;
1857
+    return $url;
1859 1858
 }
1860 1859
 
1861 1860
 // https://code.spip.net/@urls_connect_dist
1862 1861
 function urls_connect_dist($i, &$entite, $args = '', $ancre = '', $public = null) {
1863
-	include_spip('base/connect_sql');
1864
-	$id_type = id_table_objet($entite, $public);
1862
+    include_spip('base/connect_sql');
1863
+    $id_type = id_table_objet($entite, $public);
1865 1864
 
1866
-	return _DIR_RACINE . get_spip_script('./')
1867
-	. "?" . _SPIP_PAGE . "=$entite&$id_type=$i&connect=$public"
1868
-	. (!$args ? '' : "&$args")
1869
-	. (!$ancre ? '' : "#$ancre");
1865
+    return _DIR_RACINE . get_spip_script('./')
1866
+    . "?" . _SPIP_PAGE . "=$entite&$id_type=$i&connect=$public"
1867
+    . (!$args ? '' : "&$args")
1868
+    . (!$ancre ? '' : "#$ancre");
1870 1869
 }
1871 1870
 
1872 1871
 
@@ -1877,32 +1876,32 @@  discard block
 block discarded – undo
1877 1876
  * @return string
1878 1877
  */
1879 1878
 function urlencode_1738($url) {
1880
-	if (preg_match(',[^\x00-\x7E],sS', $url)) {
1881
-		$uri = '';
1882
-		for ($i = 0; $i < strlen($url); $i++) {
1883
-			if (ord($a = $url[$i]) > 127) {
1884
-				$a = rawurlencode($a);
1885
-			}
1886
-			$uri .= $a;
1887
-		}
1888
-		$url = $uri;
1889
-	}
1879
+    if (preg_match(',[^\x00-\x7E],sS', $url)) {
1880
+        $uri = '';
1881
+        for ($i = 0; $i < strlen($url); $i++) {
1882
+            if (ord($a = $url[$i]) > 127) {
1883
+                $a = rawurlencode($a);
1884
+            }
1885
+            $uri .= $a;
1886
+        }
1887
+        $url = $uri;
1888
+    }
1890 1889
 
1891
-	return quote_amp($url);
1890
+    return quote_amp($url);
1892 1891
 }
1893 1892
 
1894 1893
 // https://code.spip.net/@generer_url_entite_absolue
1895 1894
 function generer_url_entite_absolue($id = '', $entite = '', $args = '', $ancre = '', $connect = null) {
1896
-	if (!$connect) {
1897
-		$connect = true;
1898
-	}
1899
-	$h = generer_url_entite($id, $entite, $args, $ancre, $connect);
1900
-	if (!preg_match(',^\w+:,', $h)) {
1901
-		include_spip('inc/filtres_mini');
1902
-		$h = url_absolue($h);
1903
-	}
1895
+    if (!$connect) {
1896
+        $connect = true;
1897
+    }
1898
+    $h = generer_url_entite($id, $entite, $args, $ancre, $connect);
1899
+    if (!preg_match(',^\w+:,', $h)) {
1900
+        include_spip('inc/filtres_mini');
1901
+        $h = url_absolue($h);
1902
+    }
1904 1903
 
1905
-	return $h;
1904
+    return $h;
1906 1905
 }
1907 1906
 
1908 1907
 
@@ -1918,11 +1917,11 @@  discard block
 block discarded – undo
1918 1917
  *     true si la valeur est considérée active ; false sinon.
1919 1918
  **/
1920 1919
 function test_valeur_serveur($truc) {
1921
-	if (!$truc) {
1922
-		return false;
1923
-	}
1920
+    if (!$truc) {
1921
+        return false;
1922
+    }
1924 1923
 
1925
-	return (strtolower($truc) !== 'off');
1924
+    return (strtolower($truc) !== 'off');
1926 1925
 }
1927 1926
 
1928 1927
 //
@@ -1950,80 +1949,80 @@  discard block
 block discarded – undo
1950 1949
  */
1951 1950
 function url_de_base($profondeur = null) {
1952 1951
 
1953
-	static $url = array();
1954
-	if (is_array($profondeur)) {
1955
-		return $url = $profondeur;
1956
-	}
1957
-	if ($profondeur === false) {
1958
-		return $url;
1959
-	}
1960
-
1961
-	if (is_null($profondeur)) {
1962
-		$profondeur = $GLOBALS['profondeur_url'];
1963
-	}
1964
-
1965
-	if (isset($url[$profondeur])) {
1966
-		return $url[$profondeur];
1967
-	}
1968
-
1969
-	$http = 'http';
1970
-
1971
-	if (
1972
-		isset($_SERVER["SCRIPT_URI"])
1973
-		and substr($_SERVER["SCRIPT_URI"], 0, 5) == 'https'
1974
-	) {
1975
-		$http = 'https';
1976
-	} elseif (
1977
-		isset($_SERVER['HTTPS'])
1978
-		and test_valeur_serveur($_SERVER['HTTPS'])
1979
-	) {
1980
-		$http = 'https';
1981
-	}
1982
-
1983
-	// note : HTTP_HOST contient le :port si necessaire
1984
-	$host = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : null;
1985
-	// si on n'a pas trouvé d'hôte du tout, en dernier recours on utilise adresse_site comme fallback
1986
-	if (is_null($host) and isset($GLOBALS['meta']['adresse_site'])) {
1987
-		$host = $GLOBALS['meta']['adresse_site'];
1988
-		if ($scheme = parse_url($host, PHP_URL_SCHEME)) {
1989
-			$http = $scheme;
1990
-			$host = str_replace("{$scheme}://", '', $host);
1991
-		}
1992
-	}
1993
-	if (isset($_SERVER['SERVER_PORT'])
1994
-		and $port = $_SERVER['SERVER_PORT']
1995
-		and strpos($host, ":") == false
1996
-	) {
1997
-		if (!defined('_PORT_HTTP_STANDARD')) {
1998
-			define('_PORT_HTTP_STANDARD', '80');
1999
-		}
2000
-		if (!defined('_PORT_HTTPS_STANDARD')) {
2001
-			define('_PORT_HTTPS_STANDARD', '443');
2002
-		}
2003
-		if ($http == "http" and !in_array($port, explode(',', _PORT_HTTP_STANDARD))) {
2004
-			$host .= ":$port";
2005
-		}
2006
-		if ($http == "https" and !in_array($port, explode(',', _PORT_HTTPS_STANDARD))) {
2007
-			$host .= ":$port";
2008
-		}
2009
-	}
2010
-
2011
-	if (!$GLOBALS['REQUEST_URI']) {
2012
-		if (isset($_SERVER['REQUEST_URI'])) {
2013
-			$GLOBALS['REQUEST_URI'] = $_SERVER['REQUEST_URI'];
2014
-		} else {
2015
-			$GLOBALS['REQUEST_URI'] = (php_sapi_name() !== 'cli') ? $_SERVER['PHP_SELF'] : '';
2016
-			if (!empty($_SERVER['QUERY_STRING'])
2017
-				and !strpos($_SERVER['REQUEST_URI'], '?')
2018
-			) {
2019
-				$GLOBALS['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING'];
2020
-			}
2021
-		}
2022
-	}
2023
-
2024
-	$url[$profondeur] = url_de_($http, $host, $GLOBALS['REQUEST_URI'], $profondeur);
2025
-
2026
-	return $url[$profondeur];
1952
+    static $url = array();
1953
+    if (is_array($profondeur)) {
1954
+        return $url = $profondeur;
1955
+    }
1956
+    if ($profondeur === false) {
1957
+        return $url;
1958
+    }
1959
+
1960
+    if (is_null($profondeur)) {
1961
+        $profondeur = $GLOBALS['profondeur_url'];
1962
+    }
1963
+
1964
+    if (isset($url[$profondeur])) {
1965
+        return $url[$profondeur];
1966
+    }
1967
+
1968
+    $http = 'http';
1969
+
1970
+    if (
1971
+        isset($_SERVER["SCRIPT_URI"])
1972
+        and substr($_SERVER["SCRIPT_URI"], 0, 5) == 'https'
1973
+    ) {
1974
+        $http = 'https';
1975
+    } elseif (
1976
+        isset($_SERVER['HTTPS'])
1977
+        and test_valeur_serveur($_SERVER['HTTPS'])
1978
+    ) {
1979
+        $http = 'https';
1980
+    }
1981
+
1982
+    // note : HTTP_HOST contient le :port si necessaire
1983
+    $host = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : null;
1984
+    // si on n'a pas trouvé d'hôte du tout, en dernier recours on utilise adresse_site comme fallback
1985
+    if (is_null($host) and isset($GLOBALS['meta']['adresse_site'])) {
1986
+        $host = $GLOBALS['meta']['adresse_site'];
1987
+        if ($scheme = parse_url($host, PHP_URL_SCHEME)) {
1988
+            $http = $scheme;
1989
+            $host = str_replace("{$scheme}://", '', $host);
1990
+        }
1991
+    }
1992
+    if (isset($_SERVER['SERVER_PORT'])
1993
+        and $port = $_SERVER['SERVER_PORT']
1994
+        and strpos($host, ":") == false
1995
+    ) {
1996
+        if (!defined('_PORT_HTTP_STANDARD')) {
1997
+            define('_PORT_HTTP_STANDARD', '80');
1998
+        }
1999
+        if (!defined('_PORT_HTTPS_STANDARD')) {
2000
+            define('_PORT_HTTPS_STANDARD', '443');
2001
+        }
2002
+        if ($http == "http" and !in_array($port, explode(',', _PORT_HTTP_STANDARD))) {
2003
+            $host .= ":$port";
2004
+        }
2005
+        if ($http == "https" and !in_array($port, explode(',', _PORT_HTTPS_STANDARD))) {
2006
+            $host .= ":$port";
2007
+        }
2008
+    }
2009
+
2010
+    if (!$GLOBALS['REQUEST_URI']) {
2011
+        if (isset($_SERVER['REQUEST_URI'])) {
2012
+            $GLOBALS['REQUEST_URI'] = $_SERVER['REQUEST_URI'];
2013
+        } else {
2014
+            $GLOBALS['REQUEST_URI'] = (php_sapi_name() !== 'cli') ? $_SERVER['PHP_SELF'] : '';
2015
+            if (!empty($_SERVER['QUERY_STRING'])
2016
+                and !strpos($_SERVER['REQUEST_URI'], '?')
2017
+            ) {
2018
+                $GLOBALS['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING'];
2019
+            }
2020
+        }
2021
+    }
2022
+
2023
+    $url[$profondeur] = url_de_($http, $host, $GLOBALS['REQUEST_URI'], $profondeur);
2024
+
2025
+    return $url[$profondeur];
2027 2026
 }
2028 2027
 
2029 2028
 /**
@@ -2036,26 +2035,26 @@  discard block
 block discarded – undo
2036 2035
  * @return string
2037 2036
  */
2038 2037
 function url_de_($http, $host, $request, $prof = 0) {
2039
-	$prof = max($prof, 0);
2038
+    $prof = max($prof, 0);
2040 2039
 
2041
-	$myself = ltrim($request, '/');
2042
-	# supprimer la chaine de GET
2043
-	list($myself) = explode('?', $myself);
2044
-	// vieux mode HTTP qui envoie après le nom de la methode l'URL compléte
2045
-	// protocole, "://", nom du serveur avant le path dans _SERVER["REQUEST_URI"]
2046
-	if (strpos($myself,'://') !== false) {
2047
-		$myself = explode('://',$myself);
2048
-		array_shift($myself);
2049
-		$myself = implode('://',$myself);
2050
-		$myself = explode('/',$myself);
2051
-		array_shift($myself);
2052
-		$myself = implode('/',$myself);
2053
-	}
2054
-	$url = join('/', array_slice(explode('/', $myself), 0, -1 - $prof)) . '/';
2040
+    $myself = ltrim($request, '/');
2041
+    # supprimer la chaine de GET
2042
+    list($myself) = explode('?', $myself);
2043
+    // vieux mode HTTP qui envoie après le nom de la methode l'URL compléte
2044
+    // protocole, "://", nom du serveur avant le path dans _SERVER["REQUEST_URI"]
2045
+    if (strpos($myself,'://') !== false) {
2046
+        $myself = explode('://',$myself);
2047
+        array_shift($myself);
2048
+        $myself = implode('://',$myself);
2049
+        $myself = explode('/',$myself);
2050
+        array_shift($myself);
2051
+        $myself = implode('/',$myself);
2052
+    }
2053
+    $url = join('/', array_slice(explode('/', $myself), 0, -1 - $prof)) . '/';
2055 2054
 
2056
-	$url = $http . '://' . rtrim($host, '/') . '/' . ltrim($url, '/');
2055
+    $url = $http . '://' . rtrim($host, '/') . '/' . ltrim($url, '/');
2057 2056
 
2058
-	return $url;
2057
+    return $url;
2059 2058
 }
2060 2059
 
2061 2060
 
@@ -2090,26 +2089,26 @@  discard block
 block discarded – undo
2090 2089
  * @return string URL
2091 2090
  **/
2092 2091
 function generer_url_ecrire($script = '', $args = "", $no_entities = false, $rel = false) {
2093
-	if (!$rel) {
2094
-		$rel = url_de_base() . _DIR_RESTREINT_ABS . _SPIP_ECRIRE_SCRIPT;
2095
-	} else {
2096
-		if (!is_string($rel)) {
2097
-			$rel = _DIR_RESTREINT ? _DIR_RESTREINT :
2098
-				('./' . _SPIP_ECRIRE_SCRIPT);
2099
-		}
2100
-	}
2101
-
2102
-	list($script, $ancre) = array_pad(explode('#', $script), 2, null);
2103
-	if ($script and ($script <> 'accueil' or $rel)) {
2104
-		$args = "?exec=$script" . (!$args ? '' : "&$args");
2105
-	} elseif ($args) {
2106
-		$args = "?$args";
2107
-	}
2108
-	if ($ancre) {
2109
-		$args .= "#$ancre";
2110
-	}
2111
-
2112
-	return $rel . ($no_entities ? $args : str_replace('&', '&amp;', $args));
2092
+    if (!$rel) {
2093
+        $rel = url_de_base() . _DIR_RESTREINT_ABS . _SPIP_ECRIRE_SCRIPT;
2094
+    } else {
2095
+        if (!is_string($rel)) {
2096
+            $rel = _DIR_RESTREINT ? _DIR_RESTREINT :
2097
+                ('./' . _SPIP_ECRIRE_SCRIPT);
2098
+        }
2099
+    }
2100
+
2101
+    list($script, $ancre) = array_pad(explode('#', $script), 2, null);
2102
+    if ($script and ($script <> 'accueil' or $rel)) {
2103
+        $args = "?exec=$script" . (!$args ? '' : "&$args");
2104
+    } elseif ($args) {
2105
+        $args = "?$args";
2106
+    }
2107
+    if ($ancre) {
2108
+        $args .= "#$ancre";
2109
+    }
2110
+
2111
+    return $rel . ($no_entities ? $args : str_replace('&', '&amp;', $args));
2113 2112
 }
2114 2113
 
2115 2114
 //
@@ -2131,12 +2130,12 @@  discard block
 block discarded – undo
2131 2130
  *     Nom du fichier (constante _SPIP_SCRIPT), sinon nom par défaut
2132 2131
  **/
2133 2132
 function get_spip_script($default = '') {
2134
-	# cas define('_SPIP_SCRIPT', '');
2135
-	if (_SPIP_SCRIPT) {
2136
-		return _SPIP_SCRIPT;
2137
-	} else {
2138
-		return $default;
2139
-	}
2133
+    # cas define('_SPIP_SCRIPT', '');
2134
+    if (_SPIP_SCRIPT) {
2135
+        return _SPIP_SCRIPT;
2136
+    } else {
2137
+        return $default;
2138
+    }
2140 2139
 }
2141 2140
 
2142 2141
 /**
@@ -2165,39 +2164,39 @@  discard block
 block discarded – undo
2165 2164
  * @return string URL
2166 2165
  **/
2167 2166
 function generer_url_public($script = '', $args = "", $no_entities = false, $rel = true, $action = '') {
2168
-	// si le script est une action (spip_pass, spip_inscription),
2169
-	// standardiser vers la nouvelle API
2170
-
2171
-	if (!$action) {
2172
-		$action = get_spip_script();
2173
-	}
2174
-	if ($script) {
2175
-		$action = parametre_url($action, _SPIP_PAGE, $script, '&');
2176
-	}
2177
-
2178
-	if ($args) {
2179
-		if (is_array($args)) {
2180
-			$r = '';
2181
-			foreach ($args as $k => $v) {
2182
-				$r .= '&' . $k . '=' . $v;
2183
-			}
2184
-			$args = substr($r, 1);
2185
-		}
2186
-		$action .=
2187
-			(strpos($action, '?') !== false ? '&' : '?') . $args;
2188
-	}
2189
-	if (!$no_entities) {
2190
-		$action = quote_amp($action);
2191
-	}
2192
-
2193
-	// ne pas generer une url avec /./?page= en cas d'url absolue et de _SPIP_SCRIPT vide
2194
-	return ($rel ? _DIR_RACINE . $action : rtrim(url_de_base(), '/') . preg_replace(",^/[.]/,", "/", "/$action"));
2167
+    // si le script est une action (spip_pass, spip_inscription),
2168
+    // standardiser vers la nouvelle API
2169
+
2170
+    if (!$action) {
2171
+        $action = get_spip_script();
2172
+    }
2173
+    if ($script) {
2174
+        $action = parametre_url($action, _SPIP_PAGE, $script, '&');
2175
+    }
2176
+
2177
+    if ($args) {
2178
+        if (is_array($args)) {
2179
+            $r = '';
2180
+            foreach ($args as $k => $v) {
2181
+                $r .= '&' . $k . '=' . $v;
2182
+            }
2183
+            $args = substr($r, 1);
2184
+        }
2185
+        $action .=
2186
+            (strpos($action, '?') !== false ? '&' : '?') . $args;
2187
+    }
2188
+    if (!$no_entities) {
2189
+        $action = quote_amp($action);
2190
+    }
2191
+
2192
+    // ne pas generer une url avec /./?page= en cas d'url absolue et de _SPIP_SCRIPT vide
2193
+    return ($rel ? _DIR_RACINE . $action : rtrim(url_de_base(), '/') . preg_replace(",^/[.]/,", "/", "/$action"));
2195 2194
 }
2196 2195
 
2197 2196
 // https://code.spip.net/@generer_url_prive
2198 2197
 function generer_url_prive($script, $args = "", $no_entities = false) {
2199 2198
 
2200
-	return generer_url_public($script, $args, $no_entities, false, _DIR_RESTREINT_ABS . 'prive.php');
2199
+    return generer_url_public($script, $args, $no_entities, false, _DIR_RESTREINT_ABS . 'prive.php');
2201 2200
 }
2202 2201
 
2203 2202
 // Pour les formulaires en methode POST,
@@ -2222,19 +2221,19 @@  discard block
 block discarded – undo
2222 2221
  **/
2223 2222
 function generer_form_ecrire($script, $corps, $atts = '', $submit = '') {
2224 2223
 
2225
-	$script1 = explode('&', $script);
2226
-	$script1 = reset($script1);
2224
+    $script1 = explode('&', $script);
2225
+    $script1 = reset($script1);
2227 2226
 
2228
-	return "<form action='"
2229
-	. ($script ? generer_url_ecrire($script) : '')
2230
-	. "' "
2231
-	. ($atts ? $atts : " method='post'")
2232
-	. "><div>\n"
2233
-	. "<input type='hidden' name='exec' value='$script1' />"
2234
-	. $corps
2235
-	. (!$submit ? '' :
2236
-		("<div style='text-align: " . $GLOBALS['spip_lang_right'] . "'><input class='fondo' type='submit' value=\"" . entites_html($submit) . "\" /></div>"))
2237
-	. "</div></form>\n";
2227
+    return "<form action='"
2228
+    . ($script ? generer_url_ecrire($script) : '')
2229
+    . "' "
2230
+    . ($atts ? $atts : " method='post'")
2231
+    . "><div>\n"
2232
+    . "<input type='hidden' name='exec' value='$script1' />"
2233
+    . $corps
2234
+    . (!$submit ? '' :
2235
+        ("<div style='text-align: " . $GLOBALS['spip_lang_right'] . "'><input class='fondo' type='submit' value=\"" . entites_html($submit) . "\" /></div>"))
2236
+    . "</div></form>\n";
2238 2237
 }
2239 2238
 
2240 2239
 /**
@@ -2251,22 +2250,22 @@  discard block
 block discarded – undo
2251 2250
  * @return string
2252 2251
  */
2253 2252
 function generer_form_action($script, $corps, $atts = '', $public = false) {
2254
-	// si l'on est dans l'espace prive, on garde dans l'url
2255
-	// l'exec a l'origine de l'action, qui permet de savoir si il est necessaire
2256
-	// ou non de proceder a l'authentification (cas typique de l'install par exemple)
2257
-	$h = (_DIR_RACINE and !$public)
2258
-		? generer_url_ecrire(_request('exec'))
2259
-		: generer_url_public();
2253
+    // si l'on est dans l'espace prive, on garde dans l'url
2254
+    // l'exec a l'origine de l'action, qui permet de savoir si il est necessaire
2255
+    // ou non de proceder a l'authentification (cas typique de l'install par exemple)
2256
+    $h = (_DIR_RACINE and !$public)
2257
+        ? generer_url_ecrire(_request('exec'))
2258
+        : generer_url_public();
2260 2259
 
2261
-	return "\n<form action='" .
2262
-	$h .
2263
-	"'" .
2264
-	$atts .
2265
-	">\n" .
2266
-	"<div>" .
2267
-	"\n<input type='hidden' name='action' value='$script' />" .
2268
-	$corps .
2269
-	"</div></form>";
2260
+    return "\n<form action='" .
2261
+    $h .
2262
+    "'" .
2263
+    $atts .
2264
+    ">\n" .
2265
+    "<div>" .
2266
+    "\n<input type='hidden' name='action' value='$script' />" .
2267
+    $corps .
2268
+    "</div></form>";
2270 2269
 }
2271 2270
 
2272 2271
 /**
@@ -2285,22 +2284,22 @@  discard block
 block discarded – undo
2285 2284
  *     URL
2286 2285
  */
2287 2286
 function generer_url_action($script, $args = "", $no_entities = false, $public = false) {
2288
-	// si l'on est dans l'espace prive, on garde dans l'url
2289
-	// l'exec a l'origine de l'action, qui permet de savoir si il est necessaire
2290
-	// ou non de proceder a l'authentification (cas typique de l'install par exemple)
2291
-	$url = (_DIR_RACINE and !$public)
2292
-		? generer_url_ecrire(_request('exec'))
2293
-		: generer_url_public('', '', false, false);
2294
-	$url = parametre_url($url, 'action', $script);
2295
-	if ($args) {
2296
-		$url .= quote_amp('&' . $args);
2297
-	}
2287
+    // si l'on est dans l'espace prive, on garde dans l'url
2288
+    // l'exec a l'origine de l'action, qui permet de savoir si il est necessaire
2289
+    // ou non de proceder a l'authentification (cas typique de l'install par exemple)
2290
+    $url = (_DIR_RACINE and !$public)
2291
+        ? generer_url_ecrire(_request('exec'))
2292
+        : generer_url_public('', '', false, false);
2293
+    $url = parametre_url($url, 'action', $script);
2294
+    if ($args) {
2295
+        $url .= quote_amp('&' . $args);
2296
+    }
2298 2297
 
2299
-	if ($no_entities) {
2300
-		$url = str_replace('&amp;', '&', $url);
2301
-	}
2298
+    if ($no_entities) {
2299
+        $url = str_replace('&amp;', '&', $url);
2300
+    }
2302 2301
 
2303
-	return $url;
2302
+    return $url;
2304 2303
 }
2305 2304
 
2306 2305
 
@@ -2313,8 +2312,8 @@  discard block
 block discarded – undo
2313 2312
  * @param string $ta Répertoire temporaire accessible
2314 2313
  */
2315 2314
 function spip_initialisation($pi = null, $pa = null, $ti = null, $ta = null) {
2316
-	spip_initialisation_core($pi, $pa, $ti, $ta);
2317
-	spip_initialisation_suite();
2315
+    spip_initialisation_core($pi, $pa, $ti, $ta);
2316
+    spip_initialisation_suite();
2318 2317
 }
2319 2318
 
2320 2319
 /**
@@ -2334,315 +2333,315 @@  discard block
 block discarded – undo
2334 2333
  * @param string $ta Répertoire temporaire accessible
2335 2334
  */
2336 2335
 function spip_initialisation_core($pi = null, $pa = null, $ti = null, $ta = null) {
2337
-	static $too_late = 0;
2338
-	if ($too_late++) {
2339
-		return;
2340
-	}
2341
-
2342
-	// Declaration des repertoires
2343
-
2344
-	// le nom du repertoire plugins/ activables/desactivables
2345
-	if (!defined('_DIR_PLUGINS')) {
2346
-		define('_DIR_PLUGINS', _DIR_RACINE . "plugins/");
2347
-	}
2348
-
2349
-	// le nom du repertoire des extensions/ permanentes du core, toujours actives
2350
-	if (!defined('_DIR_PLUGINS_DIST')) {
2351
-		define('_DIR_PLUGINS_DIST', _DIR_RACINE . "plugins-dist/");
2352
-	}
2353
-
2354
-	// le nom du repertoire des librairies
2355
-	if (!defined('_DIR_LIB')) {
2356
-		define('_DIR_LIB', _DIR_RACINE . "lib/");
2357
-	}
2358
-
2359
-	if (!defined('_DIR_IMG')) {
2360
-		define('_DIR_IMG', $pa);
2361
-	}
2362
-	if (!defined('_DIR_LOGOS')) {
2363
-		define('_DIR_LOGOS', $pa);
2364
-	}
2365
-	if (!defined('_DIR_IMG_ICONES')) {
2366
-		define('_DIR_IMG_ICONES', _DIR_LOGOS . "icones/");
2367
-	}
2368
-
2369
-	if (!defined('_DIR_DUMP')) {
2370
-		define('_DIR_DUMP', $ti . "dump/");
2371
-	}
2372
-	if (!defined('_DIR_SESSIONS')) {
2373
-		define('_DIR_SESSIONS', $ti . "sessions/");
2374
-	}
2375
-	if (!defined('_DIR_TRANSFERT')) {
2376
-		define('_DIR_TRANSFERT', $ti . "upload/");
2377
-	}
2378
-	if (!defined('_DIR_CACHE')) {
2379
-		define('_DIR_CACHE', $ti . "cache/");
2380
-	}
2381
-	if (!defined('_DIR_CACHE_XML')) {
2382
-		define('_DIR_CACHE_XML', _DIR_CACHE . "xml/");
2383
-	}
2384
-	if (!defined('_DIR_SKELS')) {
2385
-		define('_DIR_SKELS', _DIR_CACHE . "skel/");
2386
-	}
2387
-	if (!defined('_DIR_AIDE')) {
2388
-		define('_DIR_AIDE', _DIR_CACHE . "aide/");
2389
-	}
2390
-	if (!defined('_DIR_TMP')) {
2391
-		define('_DIR_TMP', $ti);
2392
-	}
2393
-
2394
-	if (!defined('_DIR_VAR')) {
2395
-		define('_DIR_VAR', $ta);
2396
-	}
2397
-
2398
-	if (!defined('_DIR_ETC')) {
2399
-		define('_DIR_ETC', $pi);
2400
-	}
2401
-	if (!defined('_DIR_CONNECT')) {
2402
-		define('_DIR_CONNECT', $pi);
2403
-	}
2404
-	if (!defined('_DIR_CHMOD')) {
2405
-		define('_DIR_CHMOD', $pi);
2406
-	}
2407
-
2408
-	if (!isset($GLOBALS['test_dirs']))
2409
-		// Pas $pi car il est bon de le mettre hors ecriture apres intstall
2410
-		// il sera rajoute automatiquement si besoin a l'etape 2 de l'install
2411
-	{
2412
-		$GLOBALS['test_dirs'] = array($pa, $ti, $ta);
2413
-	}
2414
-
2415
-	// Declaration des fichiers
2416
-
2417
-	if (!defined('_CACHE_PLUGINS_PATH')) {
2418
-		define('_CACHE_PLUGINS_PATH', _DIR_CACHE . "charger_plugins_chemins.php");
2419
-	}
2420
-	if (!defined('_CACHE_PLUGINS_OPT')) {
2421
-		define('_CACHE_PLUGINS_OPT', _DIR_CACHE . "charger_plugins_options.php");
2422
-	}
2423
-	if (!defined('_CACHE_PLUGINS_FCT')) {
2424
-		define('_CACHE_PLUGINS_FCT', _DIR_CACHE . "charger_plugins_fonctions.php");
2425
-	}
2426
-	if (!defined('_CACHE_PIPELINES')) {
2427
-		define('_CACHE_PIPELINES', _DIR_CACHE . "charger_pipelines.php");
2428
-	}
2429
-	if (!defined('_CACHE_CHEMIN')) {
2430
-		define('_CACHE_CHEMIN', _DIR_CACHE . "chemin.txt");
2431
-	}
2432
-
2433
-	# attention .php obligatoire pour ecrire_fichier_securise
2434
-	if (!defined('_FILE_META')) {
2435
-		define('_FILE_META', $ti . 'meta_cache.php');
2436
-	}
2437
-	if (!defined('_DIR_LOG')) {
2438
-		define('_DIR_LOG', _DIR_TMP . 'log/');
2439
-	}
2440
-	if (!defined('_FILE_LOG')) {
2441
-		define('_FILE_LOG', 'spip');
2442
-	}
2443
-	if (!defined('_FILE_LOG_SUFFIX')) {
2444
-		define('_FILE_LOG_SUFFIX', '.log');
2445
-	}
2446
-
2447
-	// Le fichier de connexion a la base de donnees
2448
-	// tient compte des anciennes versions (inc_connect...)
2449
-	if (!defined('_FILE_CONNECT_INS')) {
2450
-		define('_FILE_CONNECT_INS', 'connect');
2451
-	}
2452
-	if (!defined('_FILE_CONNECT')) {
2453
-		define('_FILE_CONNECT',
2454
-		(@is_readable($f = _DIR_CONNECT . _FILE_CONNECT_INS . '.php') ? $f
2455
-			: (@is_readable($f = _DIR_RESTREINT . 'inc_connect.php') ? $f
2456
-				: false)));
2457
-	}
2458
-
2459
-	// Le fichier de reglages des droits
2460
-	if (!defined('_FILE_CHMOD_INS')) {
2461
-		define('_FILE_CHMOD_INS', 'chmod');
2462
-	}
2463
-	if (!defined('_FILE_CHMOD')) {
2464
-		define('_FILE_CHMOD',
2465
-		(@is_readable($f = _DIR_CHMOD . _FILE_CHMOD_INS . '.php') ? $f
2466
-			: false));
2467
-	}
2468
-
2469
-	if (!defined('_FILE_LDAP')) {
2470
-		define('_FILE_LDAP', 'ldap.php');
2471
-	}
2472
-
2473
-	if (!defined('_FILE_TMP_SUFFIX')) {
2474
-		define('_FILE_TMP_SUFFIX', '.tmp.php');
2475
-	}
2476
-	if (!defined('_FILE_CONNECT_TMP')) {
2477
-		define('_FILE_CONNECT_TMP', _DIR_CONNECT . _FILE_CONNECT_INS . _FILE_TMP_SUFFIX);
2478
-	}
2479
-	if (!defined('_FILE_CHMOD_TMP')) {
2480
-		define('_FILE_CHMOD_TMP', _DIR_CHMOD . _FILE_CHMOD_INS . _FILE_TMP_SUFFIX);
2481
-	}
2482
-
2483
-	// Definition des droits d'acces en ecriture
2484
-	if (!defined('_SPIP_CHMOD') and _FILE_CHMOD) {
2485
-		include_once _FILE_CHMOD;
2486
-	}
2487
-
2488
-	// Se mefier des fichiers mal remplis!
2489
-	if (!defined('_SPIP_CHMOD')) {
2490
-		define('_SPIP_CHMOD', 0777);
2491
-	}
2492
-
2493
-	if (!defined('_DEFAULT_CHARSET')) {
2494
-		/** Le charset par défaut lors de l'installation */
2495
-		define('_DEFAULT_CHARSET', 'utf-8');
2496
-	}
2497
-	if (!defined('_ROOT_PLUGINS')) {
2498
-		define('_ROOT_PLUGINS', _ROOT_RACINE . "plugins/");
2499
-	}
2500
-	if (!defined('_ROOT_PLUGINS_DIST')) {
2501
-		define('_ROOT_PLUGINS_DIST', _ROOT_RACINE . "plugins-dist/");
2502
-	}
2503
-	if (!defined('_ROOT_PLUGINS_SUPPL') && defined('_DIR_PLUGINS_SUPPL') && _DIR_PLUGINS_SUPPL) {
2504
-		define('_ROOT_PLUGINS_SUPPL', _ROOT_RACINE . str_replace(_DIR_RACINE, '', _DIR_PLUGINS_SUPPL));
2505
-	}
2506
-
2507
-	// La taille des Log
2508
-	if (!defined('_MAX_LOG')) {
2509
-		define('_MAX_LOG', 100);
2510
-	}
2511
-
2512
-	// Sommes-nous dans l'empire du Mal ?
2513
-	// (ou sous le signe du Pingouin, ascendant GNU ?)
2514
-	if (isset($_SERVER['SERVER_SOFTWARE']) and strpos($_SERVER['SERVER_SOFTWARE'], '(Win') !== false) {
2515
-		if (!defined('_OS_SERVEUR')) {
2516
-			define('_OS_SERVEUR', 'windows');
2517
-		}
2518
-		if (!defined('_SPIP_LOCK_MODE')) {
2519
-			define('_SPIP_LOCK_MODE', 1);
2520
-		} // utiliser le flock php
2521
-	} else {
2522
-		if (!defined('_OS_SERVEUR')) {
2523
-			define('_OS_SERVEUR', '');
2524
-		}
2525
-		if (!defined('_SPIP_LOCK_MODE')) {
2526
-			define('_SPIP_LOCK_MODE', 1);
2527
-		} // utiliser le flock php
2528
-		#if (!defined('_SPIP_LOCK_MODE')) define('_SPIP_LOCK_MODE',2); // utiliser le nfslock de spip mais link() est tres souvent interdite
2529
-	}
2530
-
2531
-	// Langue par defaut
2532
-	if (!defined('_LANGUE_PAR_DEFAUT')) {
2533
-		define('_LANGUE_PAR_DEFAUT', 'fr');
2534
-	}
2535
-
2536
-	//
2537
-	// Module de lecture/ecriture/suppression de fichiers utilisant flock()
2538
-	// (non surchargeable en l'etat ; attention si on utilise include_spip()
2539
-	// pour le rendre surchargeable, on va provoquer un reecriture
2540
-	// systematique du noyau ou une baisse de perfs => a etudier)
2541
-	include_once _ROOT_RESTREINT . 'inc/flock.php';
2542
-
2543
-	// charger tout de suite le path et son cache
2544
-	load_path_cache();
2545
-
2546
-	// *********** traiter les variables ************
2547
-
2548
-	//
2549
-	// Securite
2550
-	//
2551
-
2552
-	// Ne pas se faire manger par un bug php qui accepte ?GLOBALS[truc]=toto
2553
-	if (isset($_REQUEST['GLOBALS'])) {
2554
-		die();
2555
-	}
2556
-	// nettoyer les magic quotes \' et les caracteres nuls %00
2557
-	spip_desinfecte($_GET);
2558
-	spip_desinfecte($_POST);
2559
-	spip_desinfecte($_COOKIE);
2560
-	spip_desinfecte($_REQUEST);
2561
-
2562
-	// appliquer le cookie_prefix
2563
-	if ($GLOBALS['cookie_prefix'] != 'spip') {
2564
-		include_spip('inc/cookie');
2565
-		recuperer_cookies_spip($GLOBALS['cookie_prefix']);
2566
-	}
2567
-
2568
-	//
2569
-	// Capacites php (en fonction de la version)
2570
-	//
2571
-	$GLOBALS['flag_ob'] = (function_exists("ob_start")
2572
-		&& function_exists("ini_get")
2573
-		&& !strstr(@ini_get('disable_functions'), 'ob_'));
2574
-	$GLOBALS['flag_sapi_name'] = function_exists("php_sapi_name");
2575
-	$GLOBALS['flag_get_cfg_var'] = (@get_cfg_var('error_reporting') != "");
2576
-	$GLOBALS['flag_upload'] = (!$GLOBALS['flag_get_cfg_var'] ||
2577
-		(get_cfg_var('upload_max_filesize') > 0));
2578
-
2579
-
2580
-	// Compatibilite avec serveurs ne fournissant pas $REQUEST_URI
2581
-	if (isset($_SERVER['REQUEST_URI'])) {
2582
-		$GLOBALS['REQUEST_URI'] = $_SERVER['REQUEST_URI'];
2583
-	} else {
2584
-		$GLOBALS['REQUEST_URI'] = (php_sapi_name() !== 'cli') ? $_SERVER['PHP_SELF'] : '';
2585
-		if (!empty($_SERVER['QUERY_STRING'])
2586
-			and !strpos($_SERVER['REQUEST_URI'], '?')
2587
-		) {
2588
-			$GLOBALS['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING'];
2589
-		}
2590
-	}
2591
-
2592
-	// Duree de validite de l'alea pour les cookies et ce qui s'ensuit.
2593
-	if (!defined('_RENOUVELLE_ALEA')) {
2594
-		define('_RENOUVELLE_ALEA', 12 * 3600);
2595
-	}
2596
-	if (!defined('_DUREE_COOKIE_ADMIN')) {
2597
-		define('_DUREE_COOKIE_ADMIN', 14 * 24 * 3600);
2598
-	}
2599
-
2600
-	// charger les meta si possible et renouveller l'alea au besoin
2601
-	// charge aussi effacer_meta et ecrire_meta
2602
-	$inc_meta = charger_fonction('meta', 'inc');
2603
-	$inc_meta();
2604
-
2605
-	// nombre de repertoires depuis la racine
2606
-	// on compare a l'adresse de spip.php : $_SERVER["SCRIPT_NAME"]
2607
-	// ou a defaut celle donnee en meta ; (mais si celle-ci est fausse
2608
-	// le calcul est faux)
2609
-	if (!_DIR_RESTREINT) {
2610
-		$GLOBALS['profondeur_url'] = 1;
2611
-	} else {
2612
-		$uri = isset($_SERVER['REQUEST_URI']) ? explode('?', $_SERVER['REQUEST_URI']) : '';
2613
-		$uri_ref = $_SERVER["SCRIPT_NAME"];
2614
-		if (!$uri_ref
2615
-			// si on est appele avec un autre ti, on est sans doute en mutu
2616
-			// si jamais c'est de la mutu avec sous rep, on est perdu si on se fie
2617
-			// a spip.php qui est a la racine du spip, et vue qu'on sait pas se reperer
2618
-			// s'en remettre a l'adresse du site. alea jacta est.
2619
-			or $ti !== _NOM_TEMPORAIRES_INACCESSIBLES
2620
-		) {
2621
-
2622
-			if (isset($GLOBALS['meta']['adresse_site'])) {
2623
-				$uri_ref = parse_url($GLOBALS['meta']['adresse_site']);
2624
-				$uri_ref = (isset($uri_ref['path']) ? $uri_ref['path'] : '') . '/';
2625
-			} else {
2626
-				$uri_ref = "";
2627
-			}
2628
-		}
2629
-		if (!$uri or !$uri_ref) {
2630
-			$GLOBALS['profondeur_url'] = 0;
2631
-		} else {
2632
-			$GLOBALS['profondeur_url'] = max(0,
2633
-				substr_count($uri[0], '/')
2634
-				- substr_count($uri_ref, '/'));
2635
-		}
2636
-	}
2637
-	// s'il y a un cookie ou PHP_AUTH, initialiser visiteur_session
2638
-	if (_FILE_CONNECT) {
2639
-		if (verifier_visiteur() == '0minirezo'
2640
-			// si c'est un admin sans cookie admin, il faut ignorer le cache chemin !
2641
-			and !isset($_COOKIE['spip_admin'])
2642
-		) {
2643
-			clear_path_cache();
2644
-		}
2645
-	}
2336
+    static $too_late = 0;
2337
+    if ($too_late++) {
2338
+        return;
2339
+    }
2340
+
2341
+    // Declaration des repertoires
2342
+
2343
+    // le nom du repertoire plugins/ activables/desactivables
2344
+    if (!defined('_DIR_PLUGINS')) {
2345
+        define('_DIR_PLUGINS', _DIR_RACINE . "plugins/");
2346
+    }
2347
+
2348
+    // le nom du repertoire des extensions/ permanentes du core, toujours actives
2349
+    if (!defined('_DIR_PLUGINS_DIST')) {
2350
+        define('_DIR_PLUGINS_DIST', _DIR_RACINE . "plugins-dist/");
2351
+    }
2352
+
2353
+    // le nom du repertoire des librairies
2354
+    if (!defined('_DIR_LIB')) {
2355
+        define('_DIR_LIB', _DIR_RACINE . "lib/");
2356
+    }
2357
+
2358
+    if (!defined('_DIR_IMG')) {
2359
+        define('_DIR_IMG', $pa);
2360
+    }
2361
+    if (!defined('_DIR_LOGOS')) {
2362
+        define('_DIR_LOGOS', $pa);
2363
+    }
2364
+    if (!defined('_DIR_IMG_ICONES')) {
2365
+        define('_DIR_IMG_ICONES', _DIR_LOGOS . "icones/");
2366
+    }
2367
+
2368
+    if (!defined('_DIR_DUMP')) {
2369
+        define('_DIR_DUMP', $ti . "dump/");
2370
+    }
2371
+    if (!defined('_DIR_SESSIONS')) {
2372
+        define('_DIR_SESSIONS', $ti . "sessions/");
2373
+    }
2374
+    if (!defined('_DIR_TRANSFERT')) {
2375
+        define('_DIR_TRANSFERT', $ti . "upload/");
2376
+    }
2377
+    if (!defined('_DIR_CACHE')) {
2378
+        define('_DIR_CACHE', $ti . "cache/");
2379
+    }
2380
+    if (!defined('_DIR_CACHE_XML')) {
2381
+        define('_DIR_CACHE_XML', _DIR_CACHE . "xml/");
2382
+    }
2383
+    if (!defined('_DIR_SKELS')) {
2384
+        define('_DIR_SKELS', _DIR_CACHE . "skel/");
2385
+    }
2386
+    if (!defined('_DIR_AIDE')) {
2387
+        define('_DIR_AIDE', _DIR_CACHE . "aide/");
2388
+    }
2389
+    if (!defined('_DIR_TMP')) {
2390
+        define('_DIR_TMP', $ti);
2391
+    }
2392
+
2393
+    if (!defined('_DIR_VAR')) {
2394
+        define('_DIR_VAR', $ta);
2395
+    }
2396
+
2397
+    if (!defined('_DIR_ETC')) {
2398
+        define('_DIR_ETC', $pi);
2399
+    }
2400
+    if (!defined('_DIR_CONNECT')) {
2401
+        define('_DIR_CONNECT', $pi);
2402
+    }
2403
+    if (!defined('_DIR_CHMOD')) {
2404
+        define('_DIR_CHMOD', $pi);
2405
+    }
2406
+
2407
+    if (!isset($GLOBALS['test_dirs']))
2408
+        // Pas $pi car il est bon de le mettre hors ecriture apres intstall
2409
+        // il sera rajoute automatiquement si besoin a l'etape 2 de l'install
2410
+    {
2411
+        $GLOBALS['test_dirs'] = array($pa, $ti, $ta);
2412
+    }
2413
+
2414
+    // Declaration des fichiers
2415
+
2416
+    if (!defined('_CACHE_PLUGINS_PATH')) {
2417
+        define('_CACHE_PLUGINS_PATH', _DIR_CACHE . "charger_plugins_chemins.php");
2418
+    }
2419
+    if (!defined('_CACHE_PLUGINS_OPT')) {
2420
+        define('_CACHE_PLUGINS_OPT', _DIR_CACHE . "charger_plugins_options.php");
2421
+    }
2422
+    if (!defined('_CACHE_PLUGINS_FCT')) {
2423
+        define('_CACHE_PLUGINS_FCT', _DIR_CACHE . "charger_plugins_fonctions.php");
2424
+    }
2425
+    if (!defined('_CACHE_PIPELINES')) {
2426
+        define('_CACHE_PIPELINES', _DIR_CACHE . "charger_pipelines.php");
2427
+    }
2428
+    if (!defined('_CACHE_CHEMIN')) {
2429
+        define('_CACHE_CHEMIN', _DIR_CACHE . "chemin.txt");
2430
+    }
2431
+
2432
+    # attention .php obligatoire pour ecrire_fichier_securise
2433
+    if (!defined('_FILE_META')) {
2434
+        define('_FILE_META', $ti . 'meta_cache.php');
2435
+    }
2436
+    if (!defined('_DIR_LOG')) {
2437
+        define('_DIR_LOG', _DIR_TMP . 'log/');
2438
+    }
2439
+    if (!defined('_FILE_LOG')) {
2440
+        define('_FILE_LOG', 'spip');
2441
+    }
2442
+    if (!defined('_FILE_LOG_SUFFIX')) {
2443
+        define('_FILE_LOG_SUFFIX', '.log');
2444
+    }
2445
+
2446
+    // Le fichier de connexion a la base de donnees
2447
+    // tient compte des anciennes versions (inc_connect...)
2448
+    if (!defined('_FILE_CONNECT_INS')) {
2449
+        define('_FILE_CONNECT_INS', 'connect');
2450
+    }
2451
+    if (!defined('_FILE_CONNECT')) {
2452
+        define('_FILE_CONNECT',
2453
+        (@is_readable($f = _DIR_CONNECT . _FILE_CONNECT_INS . '.php') ? $f
2454
+            : (@is_readable($f = _DIR_RESTREINT . 'inc_connect.php') ? $f
2455
+                : false)));
2456
+    }
2457
+
2458
+    // Le fichier de reglages des droits
2459
+    if (!defined('_FILE_CHMOD_INS')) {
2460
+        define('_FILE_CHMOD_INS', 'chmod');
2461
+    }
2462
+    if (!defined('_FILE_CHMOD')) {
2463
+        define('_FILE_CHMOD',
2464
+        (@is_readable($f = _DIR_CHMOD . _FILE_CHMOD_INS . '.php') ? $f
2465
+            : false));
2466
+    }
2467
+
2468
+    if (!defined('_FILE_LDAP')) {
2469
+        define('_FILE_LDAP', 'ldap.php');
2470
+    }
2471
+
2472
+    if (!defined('_FILE_TMP_SUFFIX')) {
2473
+        define('_FILE_TMP_SUFFIX', '.tmp.php');
2474
+    }
2475
+    if (!defined('_FILE_CONNECT_TMP')) {
2476
+        define('_FILE_CONNECT_TMP', _DIR_CONNECT . _FILE_CONNECT_INS . _FILE_TMP_SUFFIX);
2477
+    }
2478
+    if (!defined('_FILE_CHMOD_TMP')) {
2479
+        define('_FILE_CHMOD_TMP', _DIR_CHMOD . _FILE_CHMOD_INS . _FILE_TMP_SUFFIX);
2480
+    }
2481
+
2482
+    // Definition des droits d'acces en ecriture
2483
+    if (!defined('_SPIP_CHMOD') and _FILE_CHMOD) {
2484
+        include_once _FILE_CHMOD;
2485
+    }
2486
+
2487
+    // Se mefier des fichiers mal remplis!
2488
+    if (!defined('_SPIP_CHMOD')) {
2489
+        define('_SPIP_CHMOD', 0777);
2490
+    }
2491
+
2492
+    if (!defined('_DEFAULT_CHARSET')) {
2493
+        /** Le charset par défaut lors de l'installation */
2494
+        define('_DEFAULT_CHARSET', 'utf-8');
2495
+    }
2496
+    if (!defined('_ROOT_PLUGINS')) {
2497
+        define('_ROOT_PLUGINS', _ROOT_RACINE . "plugins/");
2498
+    }
2499
+    if (!defined('_ROOT_PLUGINS_DIST')) {
2500
+        define('_ROOT_PLUGINS_DIST', _ROOT_RACINE . "plugins-dist/");
2501
+    }
2502
+    if (!defined('_ROOT_PLUGINS_SUPPL') && defined('_DIR_PLUGINS_SUPPL') && _DIR_PLUGINS_SUPPL) {
2503
+        define('_ROOT_PLUGINS_SUPPL', _ROOT_RACINE . str_replace(_DIR_RACINE, '', _DIR_PLUGINS_SUPPL));
2504
+    }
2505
+
2506
+    // La taille des Log
2507
+    if (!defined('_MAX_LOG')) {
2508
+        define('_MAX_LOG', 100);
2509
+    }
2510
+
2511
+    // Sommes-nous dans l'empire du Mal ?
2512
+    // (ou sous le signe du Pingouin, ascendant GNU ?)
2513
+    if (isset($_SERVER['SERVER_SOFTWARE']) and strpos($_SERVER['SERVER_SOFTWARE'], '(Win') !== false) {
2514
+        if (!defined('_OS_SERVEUR')) {
2515
+            define('_OS_SERVEUR', 'windows');
2516
+        }
2517
+        if (!defined('_SPIP_LOCK_MODE')) {
2518
+            define('_SPIP_LOCK_MODE', 1);
2519
+        } // utiliser le flock php
2520
+    } else {
2521
+        if (!defined('_OS_SERVEUR')) {
2522
+            define('_OS_SERVEUR', '');
2523
+        }
2524
+        if (!defined('_SPIP_LOCK_MODE')) {
2525
+            define('_SPIP_LOCK_MODE', 1);
2526
+        } // utiliser le flock php
2527
+        #if (!defined('_SPIP_LOCK_MODE')) define('_SPIP_LOCK_MODE',2); // utiliser le nfslock de spip mais link() est tres souvent interdite
2528
+    }
2529
+
2530
+    // Langue par defaut
2531
+    if (!defined('_LANGUE_PAR_DEFAUT')) {
2532
+        define('_LANGUE_PAR_DEFAUT', 'fr');
2533
+    }
2534
+
2535
+    //
2536
+    // Module de lecture/ecriture/suppression de fichiers utilisant flock()
2537
+    // (non surchargeable en l'etat ; attention si on utilise include_spip()
2538
+    // pour le rendre surchargeable, on va provoquer un reecriture
2539
+    // systematique du noyau ou une baisse de perfs => a etudier)
2540
+    include_once _ROOT_RESTREINT . 'inc/flock.php';
2541
+
2542
+    // charger tout de suite le path et son cache
2543
+    load_path_cache();
2544
+
2545
+    // *********** traiter les variables ************
2546
+
2547
+    //
2548
+    // Securite
2549
+    //
2550
+
2551
+    // Ne pas se faire manger par un bug php qui accepte ?GLOBALS[truc]=toto
2552
+    if (isset($_REQUEST['GLOBALS'])) {
2553
+        die();
2554
+    }
2555
+    // nettoyer les magic quotes \' et les caracteres nuls %00
2556
+    spip_desinfecte($_GET);
2557
+    spip_desinfecte($_POST);
2558
+    spip_desinfecte($_COOKIE);
2559
+    spip_desinfecte($_REQUEST);
2560
+
2561
+    // appliquer le cookie_prefix
2562
+    if ($GLOBALS['cookie_prefix'] != 'spip') {
2563
+        include_spip('inc/cookie');
2564
+        recuperer_cookies_spip($GLOBALS['cookie_prefix']);
2565
+    }
2566
+
2567
+    //
2568
+    // Capacites php (en fonction de la version)
2569
+    //
2570
+    $GLOBALS['flag_ob'] = (function_exists("ob_start")
2571
+        && function_exists("ini_get")
2572
+        && !strstr(@ini_get('disable_functions'), 'ob_'));
2573
+    $GLOBALS['flag_sapi_name'] = function_exists("php_sapi_name");
2574
+    $GLOBALS['flag_get_cfg_var'] = (@get_cfg_var('error_reporting') != "");
2575
+    $GLOBALS['flag_upload'] = (!$GLOBALS['flag_get_cfg_var'] ||
2576
+        (get_cfg_var('upload_max_filesize') > 0));
2577
+
2578
+
2579
+    // Compatibilite avec serveurs ne fournissant pas $REQUEST_URI
2580
+    if (isset($_SERVER['REQUEST_URI'])) {
2581
+        $GLOBALS['REQUEST_URI'] = $_SERVER['REQUEST_URI'];
2582
+    } else {
2583
+        $GLOBALS['REQUEST_URI'] = (php_sapi_name() !== 'cli') ? $_SERVER['PHP_SELF'] : '';
2584
+        if (!empty($_SERVER['QUERY_STRING'])
2585
+            and !strpos($_SERVER['REQUEST_URI'], '?')
2586
+        ) {
2587
+            $GLOBALS['REQUEST_URI'] .= '?' . $_SERVER['QUERY_STRING'];
2588
+        }
2589
+    }
2590
+
2591
+    // Duree de validite de l'alea pour les cookies et ce qui s'ensuit.
2592
+    if (!defined('_RENOUVELLE_ALEA')) {
2593
+        define('_RENOUVELLE_ALEA', 12 * 3600);
2594
+    }
2595
+    if (!defined('_DUREE_COOKIE_ADMIN')) {
2596
+        define('_DUREE_COOKIE_ADMIN', 14 * 24 * 3600);
2597
+    }
2598
+
2599
+    // charger les meta si possible et renouveller l'alea au besoin
2600
+    // charge aussi effacer_meta et ecrire_meta
2601
+    $inc_meta = charger_fonction('meta', 'inc');
2602
+    $inc_meta();
2603
+
2604
+    // nombre de repertoires depuis la racine
2605
+    // on compare a l'adresse de spip.php : $_SERVER["SCRIPT_NAME"]
2606
+    // ou a defaut celle donnee en meta ; (mais si celle-ci est fausse
2607
+    // le calcul est faux)
2608
+    if (!_DIR_RESTREINT) {
2609
+        $GLOBALS['profondeur_url'] = 1;
2610
+    } else {
2611
+        $uri = isset($_SERVER['REQUEST_URI']) ? explode('?', $_SERVER['REQUEST_URI']) : '';
2612
+        $uri_ref = $_SERVER["SCRIPT_NAME"];
2613
+        if (!$uri_ref
2614
+            // si on est appele avec un autre ti, on est sans doute en mutu
2615
+            // si jamais c'est de la mutu avec sous rep, on est perdu si on se fie
2616
+            // a spip.php qui est a la racine du spip, et vue qu'on sait pas se reperer
2617
+            // s'en remettre a l'adresse du site. alea jacta est.
2618
+            or $ti !== _NOM_TEMPORAIRES_INACCESSIBLES
2619
+        ) {
2620
+
2621
+            if (isset($GLOBALS['meta']['adresse_site'])) {
2622
+                $uri_ref = parse_url($GLOBALS['meta']['adresse_site']);
2623
+                $uri_ref = (isset($uri_ref['path']) ? $uri_ref['path'] : '') . '/';
2624
+            } else {
2625
+                $uri_ref = "";
2626
+            }
2627
+        }
2628
+        if (!$uri or !$uri_ref) {
2629
+            $GLOBALS['profondeur_url'] = 0;
2630
+        } else {
2631
+            $GLOBALS['profondeur_url'] = max(0,
2632
+                substr_count($uri[0], '/')
2633
+                - substr_count($uri_ref, '/'));
2634
+        }
2635
+    }
2636
+    // s'il y a un cookie ou PHP_AUTH, initialiser visiteur_session
2637
+    if (_FILE_CONNECT) {
2638
+        if (verifier_visiteur() == '0minirezo'
2639
+            // si c'est un admin sans cookie admin, il faut ignorer le cache chemin !
2640
+            and !isset($_COOKIE['spip_admin'])
2641
+        ) {
2642
+            clear_path_cache();
2643
+        }
2644
+    }
2646 2645
 
2647 2646
 }
2648 2647
 
@@ -2652,174 +2651,174 @@  discard block
 block discarded – undo
2652 2651
  *
2653 2652
  */
2654 2653
 function spip_initialisation_suite() {
2655
-	static $too_late = 0;
2656
-	if ($too_late++) {
2657
-		return;
2658
-	}
2659
-
2660
-	// taille mini des login
2661
-	if (!defined('_LOGIN_TROP_COURT')) {
2662
-		define('_LOGIN_TROP_COURT', 4);
2663
-	}
2664
-
2665
-	// la taille maxi des logos (0 : pas de limite) (pas de define par defaut, ce n'est pas utile)
2666
-	#if (!defined('_LOGO_MAX_SIZE')) define('_LOGO_MAX_SIZE', 0); # poids en ko
2667
-	#if (!defined('_LOGO_MAX_WIDTH')) define('_LOGO_MAX_WIDTH', 0); # largeur en pixels
2668
-	#if (!defined('_LOGO_MAX_HEIGHT')) define('_LOGO_MAX_HEIGHT', 0); # hauteur en pixels
2669
-
2670
-	// la taille maxi des images (0 : pas de limite) (pas de define par defaut, ce n'est pas utile)
2671
-	#if (!defined('_DOC_MAX_SIZE')) define('_DOC_MAX_SIZE', 0); # poids en ko
2672
-	#if (!defined('_IMG_MAX_SIZE')) define('_IMG_MAX_SIZE', 0); # poids en ko
2673
-	#if (!defined('_IMG_MAX_WIDTH')) define('_IMG_MAX_WIDTH', 0); # largeur en pixels
2674
-	#if (!defined('_IMG_MAX_HEIGHT')) define('_IMG_MAX_HEIGHT', 0); # hauteur en pixels
2675
-
2676
-	if (!defined('_PASS_LONGUEUR_MINI')) {
2677
-		define('_PASS_LONGUEUR_MINI', 6);
2678
-	}
2679
-
2680
-
2681
-	// Qualite des images calculees automatiquement. C'est un nombre entre 0 et 100, meme pour imagick (on ramene a 0..1 par la suite)
2682
-	if (!defined('_IMG_QUALITE')) {
2683
-		define('_IMG_QUALITE', 85);
2684
-	} # valeur par defaut
2685
-	if (!defined('_IMG_GD_QUALITE')) {
2686
-		define('_IMG_GD_QUALITE', _IMG_QUALITE);
2687
-	} # surcharge pour la lib GD
2688
-	if (!defined('_IMG_CONVERT_QUALITE')) {
2689
-		define('_IMG_CONVERT_QUALITE', _IMG_QUALITE);
2690
-	} # surcharge pour imagick en ligne de commande
2691
-	// Historiquement la valeur pour imagick semble differente. Si ca n'est pas necessaire, il serait preferable de garder _IMG_QUALITE
2692
-	if (!defined('_IMG_IMAGICK_QUALITE')) {
2693
-		define('_IMG_IMAGICK_QUALITE', 75);
2694
-	} # surcharge pour imagick en PHP
2695
-
2696
-	if (!defined('_COPIE_LOCALE_MAX_SIZE')) {
2697
-		define('_COPIE_LOCALE_MAX_SIZE', 33554432);
2698
-	} // poids en octet
2699
-
2700
-	// qq chaines standard
2701
-	if (!defined('_ACCESS_FILE_NAME')) {
2702
-		define('_ACCESS_FILE_NAME', '.htaccess');
2703
-	}
2704
-	if (!defined('_AUTH_USER_FILE')) {
2705
-		define('_AUTH_USER_FILE', '.htpasswd');
2706
-	}
2707
-	if (!defined('_SPIP_DUMP')) {
2708
-		define('_SPIP_DUMP', 'dump@nom_site@@[email protected]');
2709
-	}
2710
-	if (!defined('_CACHE_RUBRIQUES')) {
2711
-		/** Fichier cache pour le navigateur de rubrique du bandeau */
2712
-		define('_CACHE_RUBRIQUES', _DIR_TMP . 'menu-rubriques-cache.txt');
2713
-	}
2714
-	if (!defined('_CACHE_RUBRIQUES_MAX')) {
2715
-		/** Nombre maxi de rubriques enfants affichées pour chaque rubrique du navigateur de rubrique du bandeau */
2716
-		define('_CACHE_RUBRIQUES_MAX', 500);
2717
-	}
2718
-
2719
-	if (!defined('_EXTENSION_SQUELETTES')) {
2720
-		define('_EXTENSION_SQUELETTES', 'html');
2721
-	}
2722
-
2723
-	if (!defined('_DOCTYPE_ECRIRE')) {
2724
-		/** Définit le doctype de l’espace privé */
2725
-		define('_DOCTYPE_ECRIRE', "<!DOCTYPE html>\n");
2726
-	}
2727
-	if (!defined('_DOCTYPE_AIDE')) {
2728
-		/** Définit le doctype de l’aide en ligne */
2729
-		define('_DOCTYPE_AIDE',
2730
-		"<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01 Frameset//EN' 'http://www.w3.org/TR/1999/REC-html401-19991224/frameset.dtd'>");
2731
-	}
2732
-
2733
-	if (!defined('_SPIP_SCRIPT')) {
2734
-		/** L'adresse de base du site ; on peut mettre '' si la racine est gerée par
2735
-		 * le script de l'espace public, alias index.php */
2736
-		define('_SPIP_SCRIPT', 'spip.php');
2737
-	}
2738
-	if (!defined('_SPIP_PAGE')) {
2739
-		/** Argument page, personalisable en cas de conflit avec un autre script */
2740
-		define('_SPIP_PAGE', 'page');
2741
-	}
2742
-
2743
-	// le script de l'espace prive
2744
-	// Mettre a "index.php" si DirectoryIndex ne le fait pas ou pb connexes:
2745
-	// les anciens IIS n'acceptent pas les POST sur ecrire/ (#419)
2746
-	// meme pb sur thttpd cf. https://forum.spip.net/fr_184153.html
2747
-	if (!defined('_SPIP_ECRIRE_SCRIPT')) {
2748
-		if (!empty($_SERVER['SERVER_SOFTWARE']) and preg_match(',IIS|thttpd,', $_SERVER['SERVER_SOFTWARE'])) {
2749
-			define('_SPIP_ECRIRE_SCRIPT', 'index.php');
2750
-		} else {
2751
-			define('_SPIP_ECRIRE_SCRIPT', '');
2752
-		}
2753
-	}
2754
-
2755
-
2756
-	if (!defined('_SPIP_AJAX')) {
2757
-		define('_SPIP_AJAX', ((!isset($_COOKIE['spip_accepte_ajax']))
2758
-			? 1
2759
-			: (($_COOKIE['spip_accepte_ajax'] != -1) ? 1 : 0)));
2760
-	}
2761
-
2762
-	// La requete est-elle en ajax ?
2763
-	if (!defined('_AJAX')) {
2764
-		define('_AJAX',
2765
-			(isset($_SERVER['HTTP_X_REQUESTED_WITH']) # ajax jQuery
2766
-				or !empty($_REQUEST['var_ajax_redir']) # redirection 302 apres ajax jQuery
2767
-				or !empty($_REQUEST['var_ajaxcharset']) # compat ascendante pour plugins
2768
-				or !empty($_REQUEST['var_ajax']) # forms ajax & inclure ajax de spip
2769
-			)
2770
-			and empty($_REQUEST['var_noajax']) # horrible exception, car c'est pas parce que la requete est ajax jquery qu'il faut tuer tous les formulaires ajax qu'elle contient
2771
-		);
2772
-	}
2773
-
2774
-	# nombre de pixels maxi pour calcul de la vignette avec gd
2775
-	# au dela de 5500000 on considere que php n'est pas limite en memoire pour cette operation
2776
-	# les configurations limitees en memoire ont un seuil plutot vers 1MPixel
2777
-	if (!defined('_IMG_GD_MAX_PIXELS')) {
2778
-		define('_IMG_GD_MAX_PIXELS',
2779
-		(isset($GLOBALS['meta']['max_taille_vignettes']) and $GLOBALS['meta']['max_taille_vignettes'])
2780
-			? $GLOBALS['meta']['max_taille_vignettes']
2781
-			: 0);
2782
-	}
2783
-
2784
-	if (!defined('_MEMORY_LIMIT_MIN')) {
2785
-		define('_MEMORY_LIMIT_MIN', 16);
2786
-	} // en Mo
2787
-	// si on est dans l'espace prive et si le besoin est superieur a 8Mo (qui est vraiment le standard)
2788
-	// on verifie que la memoire est suffisante pour le compactage css+js pour eviter la page blanche
2789
-	// il y aura d'autres problemes et l'utilisateur n'ira pas tres loin, mais ce sera plus comprehensible qu'une page blanche
2790
-	if (test_espace_prive() and _MEMORY_LIMIT_MIN > 8) {
2791
-		if ($memory = trim(ini_get('memory_limit')) and $memory != -1) {
2792
-			$unit = strtolower(substr($memory, -1));
2793
-			$memory = substr($memory, 0, -1);
2794
-			switch ($unit) {
2795
-				// Le modifieur 'G' est disponible depuis PHP 5.1.0
2796
-				case 'g':
2797
-					$memory *= 1024;
2798
-				case 'm':
2799
-					$memory *= 1024;
2800
-				case 'k':
2801
-					$memory *= 1024;
2802
-			}
2803
-			if ($memory < _MEMORY_LIMIT_MIN * 1024 * 1024) {
2804
-				@ini_set('memory_limit', $m = _MEMORY_LIMIT_MIN . 'M');
2805
-				if (trim(ini_get('memory_limit')) != $m) {
2806
-					if (!defined('_INTERDIRE_COMPACTE_HEAD_ECRIRE')) {
2807
-						define('_INTERDIRE_COMPACTE_HEAD_ECRIRE', true);
2808
-					} // evite une page blanche car on ne saura pas calculer la css dans ce hit
2809
-				}
2810
-			}
2811
-		} else {
2812
-			if (!defined('_INTERDIRE_COMPACTE_HEAD_ECRIRE')) {
2813
-				define('_INTERDIRE_COMPACTE_HEAD_ECRIRE', true);
2814
-			}
2815
-		} // evite une page blanche car on ne saura pas calculer la css dans ce hit
2816
-	}
2817
-	// Protocoles a normaliser dans les chaines de langues
2818
-	if (!defined('_PROTOCOLES_STD')) {
2819
-		define('_PROTOCOLES_STD', 'http|https|ftp|mailto|webcal');
2820
-	}
2821
-
2822
-	init_var_mode();
2654
+    static $too_late = 0;
2655
+    if ($too_late++) {
2656
+        return;
2657
+    }
2658
+
2659
+    // taille mini des login
2660
+    if (!defined('_LOGIN_TROP_COURT')) {
2661
+        define('_LOGIN_TROP_COURT', 4);
2662
+    }
2663
+
2664
+    // la taille maxi des logos (0 : pas de limite) (pas de define par defaut, ce n'est pas utile)
2665
+    #if (!defined('_LOGO_MAX_SIZE')) define('_LOGO_MAX_SIZE', 0); # poids en ko
2666
+    #if (!defined('_LOGO_MAX_WIDTH')) define('_LOGO_MAX_WIDTH', 0); # largeur en pixels
2667
+    #if (!defined('_LOGO_MAX_HEIGHT')) define('_LOGO_MAX_HEIGHT', 0); # hauteur en pixels
2668
+
2669
+    // la taille maxi des images (0 : pas de limite) (pas de define par defaut, ce n'est pas utile)
2670
+    #if (!defined('_DOC_MAX_SIZE')) define('_DOC_MAX_SIZE', 0); # poids en ko
2671
+    #if (!defined('_IMG_MAX_SIZE')) define('_IMG_MAX_SIZE', 0); # poids en ko
2672
+    #if (!defined('_IMG_MAX_WIDTH')) define('_IMG_MAX_WIDTH', 0); # largeur en pixels
2673
+    #if (!defined('_IMG_MAX_HEIGHT')) define('_IMG_MAX_HEIGHT', 0); # hauteur en pixels
2674
+
2675
+    if (!defined('_PASS_LONGUEUR_MINI')) {
2676
+        define('_PASS_LONGUEUR_MINI', 6);
2677
+    }
2678
+
2679
+
2680
+    // Qualite des images calculees automatiquement. C'est un nombre entre 0 et 100, meme pour imagick (on ramene a 0..1 par la suite)
2681
+    if (!defined('_IMG_QUALITE')) {
2682
+        define('_IMG_QUALITE', 85);
2683
+    } # valeur par defaut
2684
+    if (!defined('_IMG_GD_QUALITE')) {
2685
+        define('_IMG_GD_QUALITE', _IMG_QUALITE);
2686
+    } # surcharge pour la lib GD
2687
+    if (!defined('_IMG_CONVERT_QUALITE')) {
2688
+        define('_IMG_CONVERT_QUALITE', _IMG_QUALITE);
2689
+    } # surcharge pour imagick en ligne de commande
2690
+    // Historiquement la valeur pour imagick semble differente. Si ca n'est pas necessaire, il serait preferable de garder _IMG_QUALITE
2691
+    if (!defined('_IMG_IMAGICK_QUALITE')) {
2692
+        define('_IMG_IMAGICK_QUALITE', 75);
2693
+    } # surcharge pour imagick en PHP
2694
+
2695
+    if (!defined('_COPIE_LOCALE_MAX_SIZE')) {
2696
+        define('_COPIE_LOCALE_MAX_SIZE', 33554432);
2697
+    } // poids en octet
2698
+
2699
+    // qq chaines standard
2700
+    if (!defined('_ACCESS_FILE_NAME')) {
2701
+        define('_ACCESS_FILE_NAME', '.htaccess');
2702
+    }
2703
+    if (!defined('_AUTH_USER_FILE')) {
2704
+        define('_AUTH_USER_FILE', '.htpasswd');
2705
+    }
2706
+    if (!defined('_SPIP_DUMP')) {
2707
+        define('_SPIP_DUMP', 'dump@nom_site@@[email protected]');
2708
+    }
2709
+    if (!defined('_CACHE_RUBRIQUES')) {
2710
+        /** Fichier cache pour le navigateur de rubrique du bandeau */
2711
+        define('_CACHE_RUBRIQUES', _DIR_TMP . 'menu-rubriques-cache.txt');
2712
+    }
2713
+    if (!defined('_CACHE_RUBRIQUES_MAX')) {
2714
+        /** Nombre maxi de rubriques enfants affichées pour chaque rubrique du navigateur de rubrique du bandeau */
2715
+        define('_CACHE_RUBRIQUES_MAX', 500);
2716
+    }
2717
+
2718
+    if (!defined('_EXTENSION_SQUELETTES')) {
2719
+        define('_EXTENSION_SQUELETTES', 'html');
2720
+    }
2721
+
2722
+    if (!defined('_DOCTYPE_ECRIRE')) {
2723
+        /** Définit le doctype de l’espace privé */
2724
+        define('_DOCTYPE_ECRIRE', "<!DOCTYPE html>\n");
2725
+    }
2726
+    if (!defined('_DOCTYPE_AIDE')) {
2727
+        /** Définit le doctype de l’aide en ligne */
2728
+        define('_DOCTYPE_AIDE',
2729
+        "<!DOCTYPE html PUBLIC '-//W3C//DTD HTML 4.01 Frameset//EN' 'http://www.w3.org/TR/1999/REC-html401-19991224/frameset.dtd'>");
2730
+    }
2731
+
2732
+    if (!defined('_SPIP_SCRIPT')) {
2733
+        /** L'adresse de base du site ; on peut mettre '' si la racine est gerée par
2734
+         * le script de l'espace public, alias index.php */
2735
+        define('_SPIP_SCRIPT', 'spip.php');
2736
+    }
2737
+    if (!defined('_SPIP_PAGE')) {
2738
+        /** Argument page, personalisable en cas de conflit avec un autre script */
2739
+        define('_SPIP_PAGE', 'page');
2740
+    }
2741
+
2742
+    // le script de l'espace prive
2743
+    // Mettre a "index.php" si DirectoryIndex ne le fait pas ou pb connexes:
2744
+    // les anciens IIS n'acceptent pas les POST sur ecrire/ (#419)
2745
+    // meme pb sur thttpd cf. https://forum.spip.net/fr_184153.html
2746
+    if (!defined('_SPIP_ECRIRE_SCRIPT')) {
2747
+        if (!empty($_SERVER['SERVER_SOFTWARE']) and preg_match(',IIS|thttpd,', $_SERVER['SERVER_SOFTWARE'])) {
2748
+            define('_SPIP_ECRIRE_SCRIPT', 'index.php');
2749
+        } else {
2750
+            define('_SPIP_ECRIRE_SCRIPT', '');
2751
+        }
2752
+    }
2753
+
2754
+
2755
+    if (!defined('_SPIP_AJAX')) {
2756
+        define('_SPIP_AJAX', ((!isset($_COOKIE['spip_accepte_ajax']))
2757
+            ? 1
2758
+            : (($_COOKIE['spip_accepte_ajax'] != -1) ? 1 : 0)));
2759
+    }
2760
+
2761
+    // La requete est-elle en ajax ?
2762
+    if (!defined('_AJAX')) {
2763
+        define('_AJAX',
2764
+            (isset($_SERVER['HTTP_X_REQUESTED_WITH']) # ajax jQuery
2765
+                or !empty($_REQUEST['var_ajax_redir']) # redirection 302 apres ajax jQuery
2766
+                or !empty($_REQUEST['var_ajaxcharset']) # compat ascendante pour plugins
2767
+                or !empty($_REQUEST['var_ajax']) # forms ajax & inclure ajax de spip
2768
+            )
2769
+            and empty($_REQUEST['var_noajax']) # horrible exception, car c'est pas parce que la requete est ajax jquery qu'il faut tuer tous les formulaires ajax qu'elle contient
2770
+        );
2771
+    }
2772
+
2773
+    # nombre de pixels maxi pour calcul de la vignette avec gd
2774
+    # au dela de 5500000 on considere que php n'est pas limite en memoire pour cette operation
2775
+    # les configurations limitees en memoire ont un seuil plutot vers 1MPixel
2776
+    if (!defined('_IMG_GD_MAX_PIXELS')) {
2777
+        define('_IMG_GD_MAX_PIXELS',
2778
+        (isset($GLOBALS['meta']['max_taille_vignettes']) and $GLOBALS['meta']['max_taille_vignettes'])
2779
+            ? $GLOBALS['meta']['max_taille_vignettes']
2780
+            : 0);
2781
+    }
2782
+
2783
+    if (!defined('_MEMORY_LIMIT_MIN')) {
2784
+        define('_MEMORY_LIMIT_MIN', 16);
2785
+    } // en Mo
2786
+    // si on est dans l'espace prive et si le besoin est superieur a 8Mo (qui est vraiment le standard)
2787
+    // on verifie que la memoire est suffisante pour le compactage css+js pour eviter la page blanche
2788
+    // il y aura d'autres problemes et l'utilisateur n'ira pas tres loin, mais ce sera plus comprehensible qu'une page blanche
2789
+    if (test_espace_prive() and _MEMORY_LIMIT_MIN > 8) {
2790
+        if ($memory = trim(ini_get('memory_limit')) and $memory != -1) {
2791
+            $unit = strtolower(substr($memory, -1));
2792
+            $memory = substr($memory, 0, -1);
2793
+            switch ($unit) {
2794
+                // Le modifieur 'G' est disponible depuis PHP 5.1.0
2795
+                case 'g':
2796
+                    $memory *= 1024;
2797
+                case 'm':
2798
+                    $memory *= 1024;
2799
+                case 'k':
2800
+                    $memory *= 1024;
2801
+            }
2802
+            if ($memory < _MEMORY_LIMIT_MIN * 1024 * 1024) {
2803
+                @ini_set('memory_limit', $m = _MEMORY_LIMIT_MIN . 'M');
2804
+                if (trim(ini_get('memory_limit')) != $m) {
2805
+                    if (!defined('_INTERDIRE_COMPACTE_HEAD_ECRIRE')) {
2806
+                        define('_INTERDIRE_COMPACTE_HEAD_ECRIRE', true);
2807
+                    } // evite une page blanche car on ne saura pas calculer la css dans ce hit
2808
+                }
2809
+            }
2810
+        } else {
2811
+            if (!defined('_INTERDIRE_COMPACTE_HEAD_ECRIRE')) {
2812
+                define('_INTERDIRE_COMPACTE_HEAD_ECRIRE', true);
2813
+            }
2814
+        } // evite une page blanche car on ne saura pas calculer la css dans ce hit
2815
+    }
2816
+    // Protocoles a normaliser dans les chaines de langues
2817
+    if (!defined('_PROTOCOLES_STD')) {
2818
+        define('_PROTOCOLES_STD', 'http|https|ftp|mailto|webcal');
2819
+    }
2820
+
2821
+    init_var_mode();
2823 2822
 }
2824 2823
 
2825 2824
 /**
@@ -2853,127 +2852,127 @@  discard block
 block discarded – undo
2853 2852
  * `   var_mode` (calcul ou recalcul).
2854 2853
  */
2855 2854
 function init_var_mode() {
2856
-	static $done = false;
2857
-	if (!$done) {
2858
-
2859
-		if (isset($_GET['var_mode'])) {
2860
-			$var_mode = explode(',', $_GET['var_mode']);
2861
-			// tout le monde peut calcul/recalcul
2862
-			if (!defined('_VAR_MODE')) {
2863
-				if (in_array('recalcul', $var_mode)) {
2864
-					define('_VAR_MODE', 'recalcul');
2865
-				} elseif (in_array('calcul', $var_mode)) {
2866
-					define('_VAR_MODE', 'calcul');
2867
-				}
2868
-			}
2869
-			$var_mode = array_diff($var_mode, array('calcul', 'recalcul'));
2870
-			if ($var_mode) {
2871
-				include_spip('inc/autoriser');
2872
-				// autoriser preview si preview seulement, et sinon autoriser debug
2873
-				if (autoriser(
2874
-					($_GET['var_mode'] == 'preview')
2875
-						? 'previsualiser'
2876
-						: 'debug'
2877
-				)) {
2878
-					if (in_array('traduction', $var_mode)) {
2879
-						// forcer le calcul pour passer dans traduire
2880
-						if (!defined('_VAR_MODE')) {
2881
-							define('_VAR_MODE', 'calcul');
2882
-						}
2883
-						// et ne pas enregistrer de cache pour ne pas trainer les surlignages sur d'autres pages
2884
-						if (!defined('_VAR_NOCACHE')) {
2885
-							define('_VAR_NOCACHE', true);
2886
-						}
2887
-						$var_mode = array_diff($var_mode, array('traduction'));
2888
-					}
2889
-					if (in_array('preview', $var_mode)) {
2890
-						// basculer sur les criteres de preview dans les boucles
2891
-						if (!defined('_VAR_PREVIEW')) {
2892
-							define('_VAR_PREVIEW', true);
2893
-						}
2894
-						// forcer le calcul
2895
-						if (!defined('_VAR_MODE')) {
2896
-							define('_VAR_MODE', 'calcul');
2897
-						}
2898
-						// et ne pas enregistrer de cache
2899
-						if (!defined('_VAR_NOCACHE')) {
2900
-							define('_VAR_NOCACHE', true);
2901
-						}
2902
-						$var_mode = array_diff($var_mode, array('preview'));
2903
-					}
2904
-					if (in_array('inclure', $var_mode)) {
2905
-						// forcer le compilo et ignorer les caches existants
2906
-						if (!defined('_VAR_MODE')) {
2907
-							define('_VAR_MODE', 'calcul');
2908
-						}
2909
-						if (!defined('_VAR_INCLURE')) {
2910
-							define('_VAR_INCLURE', true);
2911
-						}
2912
-						// et ne pas enregistrer de cache
2913
-						if (!defined('_VAR_NOCACHE')) {
2914
-							define('_VAR_NOCACHE', true);
2915
-						}
2916
-						$var_mode = array_diff($var_mode, array('inclure'));
2917
-					}
2918
-					if (in_array('urls', $var_mode)) {
2919
-						// forcer le compilo et ignorer les caches existants
2920
-						if (!defined('_VAR_MODE')) {
2921
-							define('_VAR_MODE', 'calcul');
2922
-						}
2923
-						if (!defined('_VAR_URLS')) {
2924
-							define('_VAR_URLS', true);
2925
-						}
2926
-						$var_mode = array_diff($var_mode, array('urls'));
2927
-					}
2928
-					if (in_array('images', $var_mode)) {
2929
-						// forcer le compilo et ignorer les caches existants
2930
-						if (!defined('_VAR_MODE')) {
2931
-							define('_VAR_MODE', 'calcul');
2932
-						}
2933
-						// indiquer qu'on doit recalculer les images
2934
-						if (!defined('_VAR_IMAGES')) {
2935
-							define('_VAR_IMAGES', true);
2936
-						}
2937
-						$var_mode = array_diff($var_mode, array('images'));
2938
-					}
2939
-					if (in_array('debug', $var_mode)) {
2940
-						if (!defined('_VAR_MODE')) {
2941
-							define('_VAR_MODE', 'debug');
2942
-						}
2943
-						// et ne pas enregistrer de cache
2944
-						if (!defined('_VAR_NOCACHE')) {
2945
-							define('_VAR_NOCACHE', true);
2946
-						}
2947
-						$var_mode = array_diff($var_mode, array('debug'));
2948
-					}
2949
-					if (count($var_mode) and !defined('_VAR_MODE')) {
2950
-						define('_VAR_MODE', reset($var_mode));
2951
-					}
2952
-					if (isset($GLOBALS['visiteur_session']['nom'])) {
2953
-						spip_log($GLOBALS['visiteur_session']['nom']
2954
-							. " " . _VAR_MODE);
2955
-					}
2956
-				} // pas autorise ?
2957
-				else {
2958
-					// si on n'est pas connecte on se redirige
2959
-					if (!$GLOBALS['visiteur_session']) {
2960
-						include_spip('inc/headers');
2961
-						$redirect = parametre_url(self('&', true), 'var_mode', $_GET['var_mode'], '&');
2962
-						redirige_par_entete(generer_url_public('login','url=' . rawurlencode($redirect), true));
2963
-					}
2964
-					// sinon tant pis
2965
-				}
2966
-			}
2967
-		}
2968
-		if (!defined('_VAR_MODE')) {
2969
-			/**
2970
-			 * Indique le mode de calcul ou d'affichage de la page.
2971
-			 * @see init_var_mode()
2972
-			 */
2973
-			define('_VAR_MODE', false);
2974
-		}
2975
-		$done = true;
2976
-	}
2855
+    static $done = false;
2856
+    if (!$done) {
2857
+
2858
+        if (isset($_GET['var_mode'])) {
2859
+            $var_mode = explode(',', $_GET['var_mode']);
2860
+            // tout le monde peut calcul/recalcul
2861
+            if (!defined('_VAR_MODE')) {
2862
+                if (in_array('recalcul', $var_mode)) {
2863
+                    define('_VAR_MODE', 'recalcul');
2864
+                } elseif (in_array('calcul', $var_mode)) {
2865
+                    define('_VAR_MODE', 'calcul');
2866
+                }
2867
+            }
2868
+            $var_mode = array_diff($var_mode, array('calcul', 'recalcul'));
2869
+            if ($var_mode) {
2870
+                include_spip('inc/autoriser');
2871
+                // autoriser preview si preview seulement, et sinon autoriser debug
2872
+                if (autoriser(
2873
+                    ($_GET['var_mode'] == 'preview')
2874
+                        ? 'previsualiser'
2875
+                        : 'debug'
2876
+                )) {
2877
+                    if (in_array('traduction', $var_mode)) {
2878
+                        // forcer le calcul pour passer dans traduire
2879
+                        if (!defined('_VAR_MODE')) {
2880
+                            define('_VAR_MODE', 'calcul');
2881
+                        }
2882
+                        // et ne pas enregistrer de cache pour ne pas trainer les surlignages sur d'autres pages
2883
+                        if (!defined('_VAR_NOCACHE')) {
2884
+                            define('_VAR_NOCACHE', true);
2885
+                        }
2886
+                        $var_mode = array_diff($var_mode, array('traduction'));
2887
+                    }
2888
+                    if (in_array('preview', $var_mode)) {
2889
+                        // basculer sur les criteres de preview dans les boucles
2890
+                        if (!defined('_VAR_PREVIEW')) {
2891
+                            define('_VAR_PREVIEW', true);
2892
+                        }
2893
+                        // forcer le calcul
2894
+                        if (!defined('_VAR_MODE')) {
2895
+                            define('_VAR_MODE', 'calcul');
2896
+                        }
2897
+                        // et ne pas enregistrer de cache
2898
+                        if (!defined('_VAR_NOCACHE')) {
2899
+                            define('_VAR_NOCACHE', true);
2900
+                        }
2901
+                        $var_mode = array_diff($var_mode, array('preview'));
2902
+                    }
2903
+                    if (in_array('inclure', $var_mode)) {
2904
+                        // forcer le compilo et ignorer les caches existants
2905
+                        if (!defined('_VAR_MODE')) {
2906
+                            define('_VAR_MODE', 'calcul');
2907
+                        }
2908
+                        if (!defined('_VAR_INCLURE')) {
2909
+                            define('_VAR_INCLURE', true);
2910
+                        }
2911
+                        // et ne pas enregistrer de cache
2912
+                        if (!defined('_VAR_NOCACHE')) {
2913
+                            define('_VAR_NOCACHE', true);
2914
+                        }
2915
+                        $var_mode = array_diff($var_mode, array('inclure'));
2916
+                    }
2917
+                    if (in_array('urls', $var_mode)) {
2918
+                        // forcer le compilo et ignorer les caches existants
2919
+                        if (!defined('_VAR_MODE')) {
2920
+                            define('_VAR_MODE', 'calcul');
2921
+                        }
2922
+                        if (!defined('_VAR_URLS')) {
2923
+                            define('_VAR_URLS', true);
2924
+                        }
2925
+                        $var_mode = array_diff($var_mode, array('urls'));
2926
+                    }
2927
+                    if (in_array('images', $var_mode)) {
2928
+                        // forcer le compilo et ignorer les caches existants
2929
+                        if (!defined('_VAR_MODE')) {
2930
+                            define('_VAR_MODE', 'calcul');
2931
+                        }
2932
+                        // indiquer qu'on doit recalculer les images
2933
+                        if (!defined('_VAR_IMAGES')) {
2934
+                            define('_VAR_IMAGES', true);
2935
+                        }
2936
+                        $var_mode = array_diff($var_mode, array('images'));
2937
+                    }
2938
+                    if (in_array('debug', $var_mode)) {
2939
+                        if (!defined('_VAR_MODE')) {
2940
+                            define('_VAR_MODE', 'debug');
2941
+                        }
2942
+                        // et ne pas enregistrer de cache
2943
+                        if (!defined('_VAR_NOCACHE')) {
2944
+                            define('_VAR_NOCACHE', true);
2945
+                        }
2946
+                        $var_mode = array_diff($var_mode, array('debug'));
2947
+                    }
2948
+                    if (count($var_mode) and !defined('_VAR_MODE')) {
2949
+                        define('_VAR_MODE', reset($var_mode));
2950
+                    }
2951
+                    if (isset($GLOBALS['visiteur_session']['nom'])) {
2952
+                        spip_log($GLOBALS['visiteur_session']['nom']
2953
+                            . " " . _VAR_MODE);
2954
+                    }
2955
+                } // pas autorise ?
2956
+                else {
2957
+                    // si on n'est pas connecte on se redirige
2958
+                    if (!$GLOBALS['visiteur_session']) {
2959
+                        include_spip('inc/headers');
2960
+                        $redirect = parametre_url(self('&', true), 'var_mode', $_GET['var_mode'], '&');
2961
+                        redirige_par_entete(generer_url_public('login','url=' . rawurlencode($redirect), true));
2962
+                    }
2963
+                    // sinon tant pis
2964
+                }
2965
+            }
2966
+        }
2967
+        if (!defined('_VAR_MODE')) {
2968
+            /**
2969
+             * Indique le mode de calcul ou d'affichage de la page.
2970
+             * @see init_var_mode()
2971
+             */
2972
+            define('_VAR_MODE', false);
2973
+        }
2974
+        $done = true;
2975
+    }
2977 2976
 }
2978 2977
 
2979 2978
 // Annuler les magic quotes \' sur GET POST COOKIE et GLOBALS ;
@@ -2981,85 +2980,85 @@  discard block
 block discarded – undo
2981 2980
 // la commande is_readable('chemin/vers/fichier/interdit%00truc_normal')
2982 2981
 // https://code.spip.net/@spip_desinfecte
2983 2982
 function spip_desinfecte(&$t, $deep = true) {
2984
-	foreach ($t as $key => $val) {
2985
-		if (is_string($t[$key])) {
2986
-			$t[$key] = str_replace(chr(0), '-', $t[$key]);
2987
-		} // traiter aussi les "texte_plus" de article_edit
2988
-		else {
2989
-			if ($deep and is_array($t[$key]) and $key !== 'GLOBALS') {
2990
-				spip_desinfecte($t[$key], $deep);
2991
-			}
2992
-		}
2993
-	}
2983
+    foreach ($t as $key => $val) {
2984
+        if (is_string($t[$key])) {
2985
+            $t[$key] = str_replace(chr(0), '-', $t[$key]);
2986
+        } // traiter aussi les "texte_plus" de article_edit
2987
+        else {
2988
+            if ($deep and is_array($t[$key]) and $key !== 'GLOBALS') {
2989
+                spip_desinfecte($t[$key], $deep);
2990
+            }
2991
+        }
2992
+    }
2994 2993
 }
2995 2994
 
2996 2995
 //  retourne le statut du visiteur s'il s'annonce
2997 2996
 
2998 2997
 // https://code.spip.net/@verifier_visiteur
2999 2998
 function verifier_visiteur() {
3000
-	// Rq: pour que cette fonction marche depuis mes_options
3001
-	// il faut forcer l'init si ce n'est fait
3002
-	// mais on risque de perturber des plugins en initialisant trop tot
3003
-	// certaines constantes
3004
-	@spip_initialisation_core(
3005
-		(_DIR_RACINE . _NOM_PERMANENTS_INACCESSIBLES),
3006
-		(_DIR_RACINE . _NOM_PERMANENTS_ACCESSIBLES),
3007
-		(_DIR_RACINE . _NOM_TEMPORAIRES_INACCESSIBLES),
3008
-		(_DIR_RACINE . _NOM_TEMPORAIRES_ACCESSIBLES)
3009
-	);
3010
-
3011
-	// Demarrer une session NON AUTHENTIFIEE si on donne son nom
3012
-	// dans un formulaire sans login (ex: #FORMULAIRE_FORUM)
3013
-	// Attention on separe bien session_nom et nom, pour eviter
3014
-	// les melanges entre donnees SQL et variables plus aleatoires
3015
-	$variables_session = array('session_nom', 'session_email');
3016
-	foreach ($variables_session as $var) {
3017
-		if (_request($var) !== null) {
3018
-			$init = true;
3019
-			break;
3020
-		}
3021
-	}
3022
-	if (isset($init)) {
3023
-		#@spip_initialisation_suite();
3024
-		$session = charger_fonction('session', 'inc');
3025
-		$session();
3026
-		include_spip('inc/texte');
3027
-		foreach ($variables_session as $var) {
3028
-			if (($a = _request($var)) !== null) {
3029
-				$GLOBALS['visiteur_session'][$var] = safehtml($a);
3030
-			}
3031
-		}
3032
-		if (!isset($GLOBALS['visiteur_session']['id_auteur'])) {
3033
-			$GLOBALS['visiteur_session']['id_auteur'] = 0;
3034
-		}
3035
-		$session($GLOBALS['visiteur_session']);
3036
-
3037
-		return 0;
3038
-	}
3039
-
3040
-	$h = (isset($_SERVER['PHP_AUTH_USER']) and !$GLOBALS['ignore_auth_http']);
3041
-	if ($h or isset($_COOKIE['spip_session']) or isset($_COOKIE[$GLOBALS['cookie_prefix'] . '_session'])) {
3042
-
3043
-		$session = charger_fonction('session', 'inc');
3044
-		if ($session()) {
3045
-			return $GLOBALS['visiteur_session']['statut'];
3046
-		}
3047
-		if ($h and isset($_SERVER['PHP_AUTH_PW'])) {
3048
-			include_spip('inc/auth');
3049
-			$h = lire_php_auth($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']);
3050
-		}
3051
-		if ($h) {
3052
-			$GLOBALS['visiteur_session'] = $h;
3053
-
3054
-			return $GLOBALS['visiteur_session']['statut'];
3055
-		}
3056
-	}
3057
-
3058
-	// au moins son navigateur nous dit la langue preferee de cet inconnu
3059
-	include_spip('inc/lang');
3060
-	utiliser_langue_visiteur();
3061
-
3062
-	return false;
2999
+    // Rq: pour que cette fonction marche depuis mes_options
3000
+    // il faut forcer l'init si ce n'est fait
3001
+    // mais on risque de perturber des plugins en initialisant trop tot
3002
+    // certaines constantes
3003
+    @spip_initialisation_core(
3004
+        (_DIR_RACINE . _NOM_PERMANENTS_INACCESSIBLES),
3005
+        (_DIR_RACINE . _NOM_PERMANENTS_ACCESSIBLES),
3006
+        (_DIR_RACINE . _NOM_TEMPORAIRES_INACCESSIBLES),
3007
+        (_DIR_RACINE . _NOM_TEMPORAIRES_ACCESSIBLES)
3008
+    );
3009
+
3010
+    // Demarrer une session NON AUTHENTIFIEE si on donne son nom
3011
+    // dans un formulaire sans login (ex: #FORMULAIRE_FORUM)
3012
+    // Attention on separe bien session_nom et nom, pour eviter
3013
+    // les melanges entre donnees SQL et variables plus aleatoires
3014
+    $variables_session = array('session_nom', 'session_email');
3015
+    foreach ($variables_session as $var) {
3016
+        if (_request($var) !== null) {
3017
+            $init = true;
3018
+            break;
3019
+        }
3020
+    }
3021
+    if (isset($init)) {
3022
+        #@spip_initialisation_suite();
3023
+        $session = charger_fonction('session', 'inc');
3024
+        $session();
3025
+        include_spip('inc/texte');
3026
+        foreach ($variables_session as $var) {
3027
+            if (($a = _request($var)) !== null) {
3028
+                $GLOBALS['visiteur_session'][$var] = safehtml($a);
3029
+            }
3030
+        }
3031
+        if (!isset($GLOBALS['visiteur_session']['id_auteur'])) {
3032
+            $GLOBALS['visiteur_session']['id_auteur'] = 0;
3033
+        }
3034
+        $session($GLOBALS['visiteur_session']);
3035
+
3036
+        return 0;
3037
+    }
3038
+
3039
+    $h = (isset($_SERVER['PHP_AUTH_USER']) and !$GLOBALS['ignore_auth_http']);
3040
+    if ($h or isset($_COOKIE['spip_session']) or isset($_COOKIE[$GLOBALS['cookie_prefix'] . '_session'])) {
3041
+
3042
+        $session = charger_fonction('session', 'inc');
3043
+        if ($session()) {
3044
+            return $GLOBALS['visiteur_session']['statut'];
3045
+        }
3046
+        if ($h and isset($_SERVER['PHP_AUTH_PW'])) {
3047
+            include_spip('inc/auth');
3048
+            $h = lire_php_auth($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']);
3049
+        }
3050
+        if ($h) {
3051
+            $GLOBALS['visiteur_session'] = $h;
3052
+
3053
+            return $GLOBALS['visiteur_session']['statut'];
3054
+        }
3055
+    }
3056
+
3057
+    // au moins son navigateur nous dit la langue preferee de cet inconnu
3058
+    include_spip('inc/lang');
3059
+    utiliser_langue_visiteur();
3060
+
3061
+    return false;
3063 3062
 }
3064 3063
 
3065 3064
 
@@ -3082,21 +3081,21 @@  discard block
 block discarded – undo
3082 3081
  *     - string Langue utilisée.
3083 3082
  **/
3084 3083
 function lang_select($lang = null) {
3085
-	static $pile_langues = array();
3086
-	if (!function_exists('changer_langue')) {
3087
-		include_spip('inc/lang');
3088
-	}
3089
-	if ($lang === null) {
3090
-		$lang = array_pop($pile_langues);
3091
-	} else {
3092
-		array_push($pile_langues, $GLOBALS['spip_lang']);
3093
-	}
3094
-	if (isset($GLOBALS['spip_lang']) and $lang == $GLOBALS['spip_lang']) {
3095
-		return $lang;
3096
-	}
3097
-	changer_langue($lang);
3084
+    static $pile_langues = array();
3085
+    if (!function_exists('changer_langue')) {
3086
+        include_spip('inc/lang');
3087
+    }
3088
+    if ($lang === null) {
3089
+        $lang = array_pop($pile_langues);
3090
+    } else {
3091
+        array_push($pile_langues, $GLOBALS['spip_lang']);
3092
+    }
3093
+    if (isset($GLOBALS['spip_lang']) and $lang == $GLOBALS['spip_lang']) {
3094
+        return $lang;
3095
+    }
3096
+    changer_langue($lang);
3098 3097
 
3099
-	return $lang;
3098
+    return $lang;
3100 3099
 }
3101 3100
 
3102 3101
 /**
@@ -3113,19 +3112,19 @@  discard block
 block discarded – undo
3113 3112
  *     Identifiant de la session
3114 3113
  **/
3115 3114
 function spip_session($force = false) {
3116
-	static $session;
3117
-	if ($force or !isset($session)) {
3118
-		$s = pipeline('definir_session',
3119
-			$GLOBALS['visiteur_session']
3120
-				? serialize($GLOBALS['visiteur_session'])
3121
-				. '_' . @$_COOKIE['spip_session']
3122
-				: ''
3123
-		);
3124
-		$session = $s ? substr(md5($s), 0, 8) : '';
3125
-	}
3115
+    static $session;
3116
+    if ($force or !isset($session)) {
3117
+        $s = pipeline('definir_session',
3118
+            $GLOBALS['visiteur_session']
3119
+                ? serialize($GLOBALS['visiteur_session'])
3120
+                . '_' . @$_COOKIE['spip_session']
3121
+                : ''
3122
+        );
3123
+        $session = $s ? substr(md5($s), 0, 8) : '';
3124
+    }
3126 3125
 
3127
-	#spip_log('session: '.$session);
3128
-	return $session;
3126
+    #spip_log('session: '.$session);
3127
+    return $session;
3129 3128
 }
3130 3129
 
3131 3130
 
@@ -3144,9 +3143,9 @@  discard block
 block discarded – undo
3144 3143
  *    Lien sur une icone d'aide
3145 3144
  **/
3146 3145
 function aider($aide = '', $distante = false) {
3147
-	$aider = charger_fonction('aide', 'inc', true);
3146
+    $aider = charger_fonction('aide', 'inc', true);
3148 3147
 
3149
-	return $aider ? $aider($aide, '', array(), $distante) : '';
3148
+    return $aider ? $aider($aide, '', array(), $distante) : '';
3150 3149
 }
3151 3150
 
3152 3151
 /**
@@ -3156,24 +3155,24 @@  discard block
 block discarded – undo
3156 3155
  */
3157 3156
 function exec_info_dist() {
3158 3157
 
3159
-	include_spip('inc/autoriser');
3160
-	if (autoriser('phpinfos')) {
3161
-		$cookies_masques = ['spip_session', 'PHPSESSID'];
3162
-		$cookies_backup = [];
3163
-		foreach ($cookies_masques as $k) {
3164
-			if (!empty($_COOKIE[$k])) {
3165
-				$cookies_backup[$k] = $_COOKIE[$k];
3166
-				$_COOKIE[$k] = '******************************';
3167
-			}
3168
-		}
3169
-		phpinfo();
3170
-		foreach ($cookies_backup as $k => $v) {
3171
-			$_COOKIE[$k] = $v;
3172
-		}
3173
-	} else {
3174
-		include_spip('inc/filtres');
3175
-		sinon_interdire_acces();
3176
-	}
3158
+    include_spip('inc/autoriser');
3159
+    if (autoriser('phpinfos')) {
3160
+        $cookies_masques = ['spip_session', 'PHPSESSID'];
3161
+        $cookies_backup = [];
3162
+        foreach ($cookies_masques as $k) {
3163
+            if (!empty($_COOKIE[$k])) {
3164
+                $cookies_backup[$k] = $_COOKIE[$k];
3165
+                $_COOKIE[$k] = '******************************';
3166
+            }
3167
+        }
3168
+        phpinfo();
3169
+        foreach ($cookies_backup as $k => $v) {
3170
+            $_COOKIE[$k] = $v;
3171
+        }
3172
+    } else {
3173
+        include_spip('inc/filtres');
3174
+        sinon_interdire_acces();
3175
+    }
3177 3176
 }
3178 3177
 
3179 3178
 /**
@@ -3193,13 +3192,13 @@  discard block
 block discarded – undo
3193 3192
  *     - string si $message à false.
3194 3193
  **/
3195 3194
 function erreur_squelette($message = '', $lieu = '') {
3196
-	$debusquer = charger_fonction('debusquer', 'public');
3197
-	if (is_array($lieu)) {
3198
-		include_spip('public/compiler');
3199
-		$lieu = reconstruire_contexte_compil($lieu);
3200
-	}
3195
+    $debusquer = charger_fonction('debusquer', 'public');
3196
+    if (is_array($lieu)) {
3197
+        include_spip('public/compiler');
3198
+        $lieu = reconstruire_contexte_compil($lieu);
3199
+    }
3201 3200
 
3202
-	return $debusquer($message, $lieu);
3201
+    return $debusquer($message, $lieu);
3203 3202
 }
3204 3203
 
3205 3204
 /**
@@ -3236,109 +3235,109 @@  discard block
 block discarded – undo
3236 3235
  *     - ou tableau d'information sur le squelette.
3237 3236
  */
3238 3237
 function recuperer_fond($fond, $contexte = array(), $options = array(), $connect = '') {
3239
-	if (!function_exists('evaluer_fond')) {
3240
-		include_spip('public/assembler');
3241
-	}
3242
-	// assurer la compat avec l'ancienne syntaxe
3243
-	// (trim etait le 3eme argument, par defaut a true)
3244
-	if (!is_array($options)) {
3245
-		$options = array('trim' => $options);
3246
-	}
3247
-	if (!isset($options['trim'])) {
3248
-		$options['trim'] = true;
3249
-	}
3250
-
3251
-	if (isset($contexte['connect'])) {
3252
-		$connect = $contexte['connect'];
3253
-		unset($contexte['connect']);
3254
-	}
3255
-
3256
-	$texte = "";
3257
-	$pages = array();
3258
-	$lang_select = '';
3259
-	if (!isset($options['etoile']) or !$options['etoile']) {
3260
-		// Si on a inclus sans fixer le critere de lang, on prend la langue courante
3261
-		if (!isset($contexte['lang'])) {
3262
-			$contexte['lang'] = $GLOBALS['spip_lang'];
3263
-		}
3264
-
3265
-		if ($contexte['lang'] != $GLOBALS['meta']['langue_site']) {
3266
-			$lang_select = lang_select($contexte['lang']);
3267
-		}
3268
-	}
3269
-
3270
-	if (!isset($GLOBALS['_INC_PUBLIC'])) {
3271
-		$GLOBALS['_INC_PUBLIC'] = 0;
3272
-	}
3273
-
3274
-	$GLOBALS['_INC_PUBLIC']++;
3275
-
3276
-	// fix #4235
3277
-	$cache_utilise_session_appelant	= (isset($GLOBALS['cache_utilise_session']) ? $GLOBALS['cache_utilise_session'] : null);
3278
-
3279
-
3280
-	foreach (is_array($fond) ? $fond : array($fond) as $f) {
3238
+    if (!function_exists('evaluer_fond')) {
3239
+        include_spip('public/assembler');
3240
+    }
3241
+    // assurer la compat avec l'ancienne syntaxe
3242
+    // (trim etait le 3eme argument, par defaut a true)
3243
+    if (!is_array($options)) {
3244
+        $options = array('trim' => $options);
3245
+    }
3246
+    if (!isset($options['trim'])) {
3247
+        $options['trim'] = true;
3248
+    }
3249
+
3250
+    if (isset($contexte['connect'])) {
3251
+        $connect = $contexte['connect'];
3252
+        unset($contexte['connect']);
3253
+    }
3254
+
3255
+    $texte = "";
3256
+    $pages = array();
3257
+    $lang_select = '';
3258
+    if (!isset($options['etoile']) or !$options['etoile']) {
3259
+        // Si on a inclus sans fixer le critere de lang, on prend la langue courante
3260
+        if (!isset($contexte['lang'])) {
3261
+            $contexte['lang'] = $GLOBALS['spip_lang'];
3262
+        }
3263
+
3264
+        if ($contexte['lang'] != $GLOBALS['meta']['langue_site']) {
3265
+            $lang_select = lang_select($contexte['lang']);
3266
+        }
3267
+    }
3268
+
3269
+    if (!isset($GLOBALS['_INC_PUBLIC'])) {
3270
+        $GLOBALS['_INC_PUBLIC'] = 0;
3271
+    }
3272
+
3273
+    $GLOBALS['_INC_PUBLIC']++;
3274
+
3275
+    // fix #4235
3276
+    $cache_utilise_session_appelant	= (isset($GLOBALS['cache_utilise_session']) ? $GLOBALS['cache_utilise_session'] : null);
3277
+
3278
+
3279
+    foreach (is_array($fond) ? $fond : array($fond) as $f) {
3281 3280
 		
3282
-		unset($GLOBALS['cache_utilise_session']);	// fix #4235
3283
-
3284
-		$page = evaluer_fond($f, $contexte, $connect);
3285
-		if ($page === '') {
3286
-			$c = isset($options['compil']) ? $options['compil'] : '';
3287
-			$a = array('fichier' => $f);
3288
-			$erreur = _T('info_erreur_squelette2', $a); // squelette introuvable
3289
-			erreur_squelette($erreur, $c);
3290
-			// eviter des erreurs strictes ensuite sur $page['cle'] en PHP >= 5.4
3291
-			$page = array('texte' => '', 'erreur' => $erreur);
3292
-		}
3293
-
3294
-		$page = pipeline('recuperer_fond', array(
3295
-			'args' => array('fond' => $f, 'contexte' => $contexte, 'options' => $options, 'connect' => $connect),
3296
-			'data' => $page
3297
-		));
3298
-		if (isset($options['ajax']) and $options['ajax']) {
3299
-			if (!function_exists('encoder_contexte_ajax')) {
3300
-				include_spip('inc/filtres');
3301
-			}
3302
-			$page['texte'] = encoder_contexte_ajax(
3303
-				array_merge(
3304
-					$contexte,
3305
-					array('fond' => $f),
3306
-					($connect ? array('connect' => $connect) : array())
3307
-				),
3308
-				'',
3309
-				$page['texte'],
3310
-				$options['ajax']
3311
-			);
3312
-		}
3313
-
3314
-		if (isset($options['raw']) and $options['raw']) {
3315
-			$pages[] = $page;
3316
-		} else {
3317
-			$texte .= $options['trim'] ? rtrim($page['texte']) : $page['texte'];
3318
-		}
3281
+        unset($GLOBALS['cache_utilise_session']);	// fix #4235
3282
+
3283
+        $page = evaluer_fond($f, $contexte, $connect);
3284
+        if ($page === '') {
3285
+            $c = isset($options['compil']) ? $options['compil'] : '';
3286
+            $a = array('fichier' => $f);
3287
+            $erreur = _T('info_erreur_squelette2', $a); // squelette introuvable
3288
+            erreur_squelette($erreur, $c);
3289
+            // eviter des erreurs strictes ensuite sur $page['cle'] en PHP >= 5.4
3290
+            $page = array('texte' => '', 'erreur' => $erreur);
3291
+        }
3292
+
3293
+        $page = pipeline('recuperer_fond', array(
3294
+            'args' => array('fond' => $f, 'contexte' => $contexte, 'options' => $options, 'connect' => $connect),
3295
+            'data' => $page
3296
+        ));
3297
+        if (isset($options['ajax']) and $options['ajax']) {
3298
+            if (!function_exists('encoder_contexte_ajax')) {
3299
+                include_spip('inc/filtres');
3300
+            }
3301
+            $page['texte'] = encoder_contexte_ajax(
3302
+                array_merge(
3303
+                    $contexte,
3304
+                    array('fond' => $f),
3305
+                    ($connect ? array('connect' => $connect) : array())
3306
+                ),
3307
+                '',
3308
+                $page['texte'],
3309
+                $options['ajax']
3310
+            );
3311
+        }
3312
+
3313
+        if (isset($options['raw']) and $options['raw']) {
3314
+            $pages[] = $page;
3315
+        } else {
3316
+            $texte .= $options['trim'] ? rtrim($page['texte']) : $page['texte'];
3317
+        }
3319 3318
 		
3320
-		// contamination de la session appelante, pour les inclusions statiques
3321
-		if (isset($page['invalideurs']['session'])){
3322
-			$cache_utilise_session_appelant = $page['invalideurs']['session'];
3323
-		}
3324
-	}
3319
+        // contamination de la session appelante, pour les inclusions statiques
3320
+        if (isset($page['invalideurs']['session'])){
3321
+            $cache_utilise_session_appelant = $page['invalideurs']['session'];
3322
+        }
3323
+    }
3325 3324
 
3326
-	// restaurer le sessionnement du contexte appelant, 
3327
-	// éventuellement contaminé si on vient de récupérer une inclusion statique sessionnée
3328
-	if (isset($cache_utilise_session_appelant)) {
3329
-		$GLOBALS['cache_utilise_session'] = $cache_utilise_session_appelant;
3330
-	}
3325
+    // restaurer le sessionnement du contexte appelant, 
3326
+    // éventuellement contaminé si on vient de récupérer une inclusion statique sessionnée
3327
+    if (isset($cache_utilise_session_appelant)) {
3328
+        $GLOBALS['cache_utilise_session'] = $cache_utilise_session_appelant;
3329
+    }
3331 3330
 
3332
-	$GLOBALS['_INC_PUBLIC']--;
3331
+    $GLOBALS['_INC_PUBLIC']--;
3333 3332
 
3334
-	if ($lang_select) {
3335
-		lang_select();
3336
-	}
3337
-	if (isset($options['raw']) and $options['raw']) {
3338
-		return is_array($fond) ? $pages : reset($pages);
3339
-	} else {
3340
-		return $options['trim'] ? ltrim($texte) : $texte;
3341
-	}
3333
+    if ($lang_select) {
3334
+        lang_select();
3335
+    }
3336
+    if (isset($options['raw']) and $options['raw']) {
3337
+        return is_array($fond) ? $pages : reset($pages);
3338
+    } else {
3339
+        return $options['trim'] ? ltrim($texte) : $texte;
3340
+    }
3342 3341
 }
3343 3342
 
3344 3343
 /**
@@ -3348,7 +3347,7 @@  discard block
 block discarded – undo
3348 3347
  * @return string
3349 3348
  */
3350 3349
 function trouve_modele($nom) {
3351
-	return trouver_fond($nom, 'modeles/');
3350
+    return trouver_fond($nom, 'modeles/');
3352 3351
 }
3353 3352
 
3354 3353
 /**
@@ -3364,21 +3363,21 @@  discard block
 block discarded – undo
3364 3363
  * @return array|string
3365 3364
  */
3366 3365
 function trouver_fond($nom, $dir = '', $pathinfo = false) {
3367
-	$f = find_in_path($nom . '.' . _EXTENSION_SQUELETTES, $dir ? rtrim($dir, '/') . '/' : '');
3368
-	if (!$pathinfo) {
3369
-		return $f;
3370
-	}
3371
-	// renvoyer un tableau detaille si $pathinfo==true
3372
-	$p = pathinfo($f);
3373
-	if (!isset($p['extension']) or !$p['extension']) {
3374
-		$p['extension'] = _EXTENSION_SQUELETTES;
3375
-	}
3376
-	if (!isset($p['extension']) or !$p['filename']) {
3377
-		$p['filename'] = ($p['basename'] ? substr($p['basename'], 0, -strlen($p['extension']) - 1) : '');
3378
-	}
3379
-	$p['fond'] = ($f ? substr($f, 0, -strlen($p['extension']) - 1) : '');
3366
+    $f = find_in_path($nom . '.' . _EXTENSION_SQUELETTES, $dir ? rtrim($dir, '/') . '/' : '');
3367
+    if (!$pathinfo) {
3368
+        return $f;
3369
+    }
3370
+    // renvoyer un tableau detaille si $pathinfo==true
3371
+    $p = pathinfo($f);
3372
+    if (!isset($p['extension']) or !$p['extension']) {
3373
+        $p['extension'] = _EXTENSION_SQUELETTES;
3374
+    }
3375
+    if (!isset($p['extension']) or !$p['filename']) {
3376
+        $p['filename'] = ($p['basename'] ? substr($p['basename'], 0, -strlen($p['extension']) - 1) : '');
3377
+    }
3378
+    $p['fond'] = ($f ? substr($f, 0, -strlen($p['extension']) - 1) : '');
3380 3379
 
3381
-	return $p;
3380
+    return $p;
3382 3381
 }
3383 3382
 
3384 3383
 /**
@@ -3399,24 +3398,24 @@  discard block
 block discarded – undo
3399 3398
  *     Nom de l'exec, sinon chaîne vide.
3400 3399
  **/
3401 3400
 function tester_url_ecrire($nom) {
3402
-	static $exec = array();
3403
-	if (isset($exec[$nom])) {
3404
-		return $exec[$nom];
3405
-	}
3406
-	// tester si c'est une page en squelette
3407
-	if (trouver_fond($nom, 'prive/squelettes/contenu/')) {
3408
-		return $exec[$nom] = 'fond';
3409
-	} // compat skels orthogonaux version precedente
3410
-	elseif (trouver_fond($nom, 'prive/exec/')) {
3411
-		return $exec[$nom] = 'fond_monobloc';
3412
-	} // echafaudage d'un fond !
3413
-	elseif (include_spip('public/styliser_par_z') and z_echafaudable($nom)) {
3414
-		return $exec[$nom] = 'fond';
3415
-	}
3416
-	// attention, il ne faut pas inclure l'exec ici
3417
-	// car sinon #URL_ECRIRE provoque des inclusions
3418
-	// et des define intrusifs potentiels
3419
-	return $exec[$nom] = ((find_in_path("{$nom}.php", 'exec/') or charger_fonction($nom, 'exec', true)) ? $nom : '');
3401
+    static $exec = array();
3402
+    if (isset($exec[$nom])) {
3403
+        return $exec[$nom];
3404
+    }
3405
+    // tester si c'est une page en squelette
3406
+    if (trouver_fond($nom, 'prive/squelettes/contenu/')) {
3407
+        return $exec[$nom] = 'fond';
3408
+    } // compat skels orthogonaux version precedente
3409
+    elseif (trouver_fond($nom, 'prive/exec/')) {
3410
+        return $exec[$nom] = 'fond_monobloc';
3411
+    } // echafaudage d'un fond !
3412
+    elseif (include_spip('public/styliser_par_z') and z_echafaudable($nom)) {
3413
+        return $exec[$nom] = 'fond';
3414
+    }
3415
+    // attention, il ne faut pas inclure l'exec ici
3416
+    // car sinon #URL_ECRIRE provoque des inclusions
3417
+    // et des define intrusifs potentiels
3418
+    return $exec[$nom] = ((find_in_path("{$nom}.php", 'exec/') or charger_fonction($nom, 'exec', true)) ? $nom : '');
3420 3419
 }
3421 3420
 
3422 3421
 
@@ -3432,10 +3431,10 @@  discard block
 block discarded – undo
3432 3431
  * @return bool true si le module est chargé
3433 3432
  **/
3434 3433
 function charger_php_extension($module) {
3435
-	if (extension_loaded($module)) {
3436
-		return true;
3437
-	}
3438
-	return false;
3434
+    if (extension_loaded($module)) {
3435
+        return true;
3436
+    }
3437
+    return false;
3439 3438
 }
3440 3439
 
3441 3440
 
@@ -3446,8 +3445,8 @@  discard block
 block discarded – undo
3446 3445
  *     true si la constante _VERSION_HTML n'est pas définie ou égale à html5
3447 3446
  **/
3448 3447
 function html5_permis() {
3449
-	return (!defined('_VERSION_HTML')
3450
-		or _VERSION_HTML !== 'html4');
3448
+    return (!defined('_VERSION_HTML')
3449
+        or _VERSION_HTML !== 'html4');
3451 3450
 }
3452 3451
 
3453 3452
 /**
@@ -3457,30 +3456,30 @@  discard block
 block discarded – undo
3457 3456
  * @return array
3458 3457
  */
3459 3458
 function formats_image_acceptables($gd = null, $svg_allowed = true) {
3460
-	$formats = null;
3461
-	if (!is_null($gd)) {
3462
-		$config = ($gd ? "gd_formats" : "formats_graphiques");
3463
-		if (isset($GLOBALS['meta'][$config])) {
3464
-			$formats = $GLOBALS['meta'][$config];
3465
-			$formats = explode(',', $formats);
3466
-			$formats = array_filter($formats);
3467
-			$formats = array_map('trim', $formats);
3468
-		}
3469
-	}
3470
-	if (is_null($formats)) {
3471
-		include_spip('inc/filtres_images_lib_mini');
3472
-		$formats = _image_extensions_acceptees_en_entree();
3473
-	}
3474
-
3475
-	if ($svg_allowed) {
3476
-		if (!in_array('svg', $formats)) {
3477
-			$formats[] = 'svg';
3478
-		}
3479
-	}
3480
-	else {
3481
-		$formats = array_diff($formats, ['svg']);
3482
-	}
3483
-	return $formats;
3459
+    $formats = null;
3460
+    if (!is_null($gd)) {
3461
+        $config = ($gd ? "gd_formats" : "formats_graphiques");
3462
+        if (isset($GLOBALS['meta'][$config])) {
3463
+            $formats = $GLOBALS['meta'][$config];
3464
+            $formats = explode(',', $formats);
3465
+            $formats = array_filter($formats);
3466
+            $formats = array_map('trim', $formats);
3467
+        }
3468
+    }
3469
+    if (is_null($formats)) {
3470
+        include_spip('inc/filtres_images_lib_mini');
3471
+        $formats = _image_extensions_acceptees_en_entree();
3472
+    }
3473
+
3474
+    if ($svg_allowed) {
3475
+        if (!in_array('svg', $formats)) {
3476
+            $formats[] = 'svg';
3477
+        }
3478
+    }
3479
+    else {
3480
+        $formats = array_diff($formats, ['svg']);
3481
+    }
3482
+    return $formats;
3484 3483
 }
3485 3484
 
3486 3485
 /**
@@ -3489,21 +3488,21 @@  discard block
 block discarded – undo
3489 3488
  * @return array|bool
3490 3489
  */
3491 3490
 function spip_getimagesize($fichier) {
3492
-	if (!$imagesize = @getimagesize($fichier)) {
3491
+    if (!$imagesize = @getimagesize($fichier)) {
3493 3492
 
3494
-		include_spip("inc/svg");
3495
-		if ($attrs = svg_lire_attributs($fichier)) {
3496
-			list($width, $height, $viewbox) = svg_getimagesize_from_attr($attrs);
3497
-			$imagesize = [
3498
-				$width,
3499
-				$height,
3500
-				IMAGETYPE_SVG,
3501
-				"width=\"{$width}\" height=\"{$height}\"",
3502
-				"mime" => "image/svg+xml"
3503
-			];
3504
-		}
3505
-	}
3506
-	return $imagesize;
3493
+        include_spip("inc/svg");
3494
+        if ($attrs = svg_lire_attributs($fichier)) {
3495
+            list($width, $height, $viewbox) = svg_getimagesize_from_attr($attrs);
3496
+            $imagesize = [
3497
+                $width,
3498
+                $height,
3499
+                IMAGETYPE_SVG,
3500
+                "width=\"{$width}\" height=\"{$height}\"",
3501
+                "mime" => "image/svg+xml"
3502
+            ];
3503
+        }
3504
+    }
3505
+    return $imagesize;
3507 3506
 }
3508 3507
 
3509 3508
 
@@ -3523,7 +3522,7 @@  discard block
 block discarded – undo
3523 3522
  * @return mixed Valeur de la meta.
3524 3523
  **/
3525 3524
 function lire_meta($nom) {
3526
-	return isset($GLOBALS['meta'][$nom]) ? $GLOBALS['meta'][$nom] : null;
3525
+    return isset($GLOBALS['meta'][$nom]) ? $GLOBALS['meta'][$nom] : null;
3527 3526
 }
3528 3527
 
3529 3528
 
@@ -3545,130 +3544,130 @@  discard block
 block discarded – undo
3545 3544
  * @param string $statut
3546 3545
  */
3547 3546
 function avertir_auteurs($nom, $message, $statut = '') {
3548
-	$alertes = $GLOBALS['meta']['message_alertes_auteurs'];
3549
-	if (!$alertes
3550
-		or !is_array($alertes = unserialize($alertes))
3551
-	) {
3552
-		$alertes = array();
3553
-	}
3547
+    $alertes = $GLOBALS['meta']['message_alertes_auteurs'];
3548
+    if (!$alertes
3549
+        or !is_array($alertes = unserialize($alertes))
3550
+    ) {
3551
+        $alertes = array();
3552
+    }
3554 3553
 
3555
-	if (!isset($alertes[$statut])) {
3556
-		$alertes[$statut] = array();
3557
-	}
3558
-	$alertes[$statut][$nom] = $message;
3559
-	ecrire_meta("message_alertes_auteurs", serialize($alertes));
3554
+    if (!isset($alertes[$statut])) {
3555
+        $alertes[$statut] = array();
3556
+    }
3557
+    $alertes[$statut][$nom] = $message;
3558
+    ecrire_meta("message_alertes_auteurs", serialize($alertes));
3560 3559
 }
3561 3560
 
3562 3561
 if (PHP_VERSION_ID < 50500) {
3563
-	if (!function_exists('array_column')) {
3564
-		/**
3565
-		 * Returns the values from a single column of the input array, identified by
3566
-		 * the $columnKey.
3567
-		 *
3568
-		 * Optionally, you may provide an $indexKey to index the values in the returned
3569
-		 * array by the values from the $indexKey column in the input array.
3570
-		 *
3571
-		 * @link http://php.net/manual/fr/function.array-column.php
3572
-		 * @link https://github.com/ramsey/array_column/blob/master/src/array_column.php
3573
-		 * @copyright Copyright (c) Ben Ramsey (http://benramsey.com)
3574
-		 * @license http://opensource.org/licenses/MIT MIT
3575
-		 *
3576
-		 * @param array $input A multi-dimensional array (record set) from which to pull
3577
-		 *                     a column of values.
3578
-		 * @param mixed $columnKey The column of values to return. This value may be the
3579
-		 *                         integer key of the column you wish to retrieve, or it
3580
-		 *                         may be the string key name for an associative array.
3581
-		 * @param mixed $indexKey (Optional.) The column to use as the index/keys for
3582
-		 *                        the returned array. This value may be the integer key
3583
-		 *                        of the column, or it may be the string key name.
3584
-		 * @return array
3585
-		 */
3586
-		function array_column($input = null, $columnKey = null, $indexKey = null)
3587
-		{
3588
-			// Using func_get_args() in order to check for proper number of
3589
-			// parameters and trigger errors exactly as the built-in array_column()
3590
-			// does in PHP 5.5.
3591
-			$argc = func_num_args();
3592
-			$params = func_get_args();
3593
-
3594
-			if ($argc < 2) {
3595
-				trigger_error("array_column() expects at least 2 parameters, {$argc} given", E_USER_WARNING);
3596
-				return null;
3597
-			}
3598
-
3599
-			if (!is_array($params[0])) {
3600
-				trigger_error(
3601
-					'array_column() expects parameter 1 to be array, ' . gettype($params[0]) . ' given',
3602
-					E_USER_WARNING
3603
-				);
3604
-				return null;
3605
-			}
3606
-
3607
-			if (!is_int($params[1])
3608
-				&& !is_float($params[1])
3609
-				&& !is_string($params[1])
3610
-				&& $params[1] !== null
3611
-				&& !(is_object($params[1]) && method_exists($params[1], '__toString'))
3612
-			) {
3613
-				trigger_error('array_column(): The column key should be either a string or an integer', E_USER_WARNING);
3614
-				return false;
3615
-			}
3616
-
3617
-			if (isset($params[2])
3618
-				&& !is_int($params[2])
3619
-				&& !is_float($params[2])
3620
-				&& !is_string($params[2])
3621
-				&& !(is_object($params[2]) && method_exists($params[2], '__toString'))
3622
-			) {
3623
-				trigger_error('array_column(): The index key should be either a string or an integer', E_USER_WARNING);
3624
-				return false;
3625
-			}
3626
-
3627
-			$paramsInput = $params[0];
3628
-			$paramsColumnKey = ($params[1] !== null) ? (string) $params[1] : null;
3629
-
3630
-			$paramsIndexKey = null;
3631
-			if (isset($params[2])) {
3632
-				if (is_float($params[2]) || is_int($params[2])) {
3633
-					$paramsIndexKey = (int) $params[2];
3634
-				} else {
3635
-					$paramsIndexKey = (string) $params[2];
3636
-				}
3637
-			}
3638
-
3639
-			$resultArray = array();
3640
-
3641
-			foreach ($paramsInput as $row) {
3642
-				$key = $value = null;
3643
-				$keySet = $valueSet = false;
3644
-
3645
-				if ($paramsIndexKey !== null && array_key_exists($paramsIndexKey, $row)) {
3646
-					$keySet = true;
3647
-					$key = (string) $row[$paramsIndexKey];
3648
-				}
3649
-
3650
-				if ($paramsColumnKey === null) {
3651
-					$valueSet = true;
3652
-					$value = $row;
3653
-				} elseif (is_array($row) && array_key_exists($paramsColumnKey, $row)) {
3654
-					$valueSet = true;
3655
-					$value = $row[$paramsColumnKey];
3656
-				}
3657
-
3658
-				if ($valueSet) {
3659
-					if ($keySet) {
3660
-						$resultArray[$key] = $value;
3661
-					} else {
3662
-						$resultArray[] = $value;
3663
-					}
3664
-				}
3665
-
3666
-			}
3667
-
3668
-			return $resultArray;
3669
-		}
3670
-
3671
-	}
3562
+    if (!function_exists('array_column')) {
3563
+        /**
3564
+         * Returns the values from a single column of the input array, identified by
3565
+         * the $columnKey.
3566
+         *
3567
+         * Optionally, you may provide an $indexKey to index the values in the returned
3568
+         * array by the values from the $indexKey column in the input array.
3569
+         *
3570
+         * @link http://php.net/manual/fr/function.array-column.php
3571
+         * @link https://github.com/ramsey/array_column/blob/master/src/array_column.php
3572
+         * @copyright Copyright (c) Ben Ramsey (http://benramsey.com)
3573
+         * @license http://opensource.org/licenses/MIT MIT
3574
+         *
3575
+         * @param array $input A multi-dimensional array (record set) from which to pull
3576
+         *                     a column of values.
3577
+         * @param mixed $columnKey The column of values to return. This value may be the
3578
+         *                         integer key of the column you wish to retrieve, or it
3579
+         *                         may be the string key name for an associative array.
3580
+         * @param mixed $indexKey (Optional.) The column to use as the index/keys for
3581
+         *                        the returned array. This value may be the integer key
3582
+         *                        of the column, or it may be the string key name.
3583
+         * @return array
3584
+         */
3585
+        function array_column($input = null, $columnKey = null, $indexKey = null)
3586
+        {
3587
+            // Using func_get_args() in order to check for proper number of
3588
+            // parameters and trigger errors exactly as the built-in array_column()
3589
+            // does in PHP 5.5.
3590
+            $argc = func_num_args();
3591
+            $params = func_get_args();
3592
+
3593
+            if ($argc < 2) {
3594
+                trigger_error("array_column() expects at least 2 parameters, {$argc} given", E_USER_WARNING);
3595
+                return null;
3596
+            }
3597
+
3598
+            if (!is_array($params[0])) {
3599
+                trigger_error(
3600
+                    'array_column() expects parameter 1 to be array, ' . gettype($params[0]) . ' given',
3601
+                    E_USER_WARNING
3602
+                );
3603
+                return null;
3604
+            }
3605
+
3606
+            if (!is_int($params[1])
3607
+                && !is_float($params[1])
3608
+                && !is_string($params[1])
3609
+                && $params[1] !== null
3610
+                && !(is_object($params[1]) && method_exists($params[1], '__toString'))
3611
+            ) {
3612
+                trigger_error('array_column(): The column key should be either a string or an integer', E_USER_WARNING);
3613
+                return false;
3614
+            }
3615
+
3616
+            if (isset($params[2])
3617
+                && !is_int($params[2])
3618
+                && !is_float($params[2])
3619
+                && !is_string($params[2])
3620
+                && !(is_object($params[2]) && method_exists($params[2], '__toString'))
3621
+            ) {
3622
+                trigger_error('array_column(): The index key should be either a string or an integer', E_USER_WARNING);
3623
+                return false;
3624
+            }
3625
+
3626
+            $paramsInput = $params[0];
3627
+            $paramsColumnKey = ($params[1] !== null) ? (string) $params[1] : null;
3628
+
3629
+            $paramsIndexKey = null;
3630
+            if (isset($params[2])) {
3631
+                if (is_float($params[2]) || is_int($params[2])) {
3632
+                    $paramsIndexKey = (int) $params[2];
3633
+                } else {
3634
+                    $paramsIndexKey = (string) $params[2];
3635
+                }
3636
+            }
3637
+
3638
+            $resultArray = array();
3639
+
3640
+            foreach ($paramsInput as $row) {
3641
+                $key = $value = null;
3642
+                $keySet = $valueSet = false;
3643
+
3644
+                if ($paramsIndexKey !== null && array_key_exists($paramsIndexKey, $row)) {
3645
+                    $keySet = true;
3646
+                    $key = (string) $row[$paramsIndexKey];
3647
+                }
3648
+
3649
+                if ($paramsColumnKey === null) {
3650
+                    $valueSet = true;
3651
+                    $value = $row;
3652
+                } elseif (is_array($row) && array_key_exists($paramsColumnKey, $row)) {
3653
+                    $valueSet = true;
3654
+                    $value = $row[$paramsColumnKey];
3655
+                }
3656
+
3657
+                if ($valueSet) {
3658
+                    if ($keySet) {
3659
+                        $resultArray[$key] = $value;
3660
+                    } else {
3661
+                        $resultArray[] = $value;
3662
+                    }
3663
+                }
3664
+
3665
+            }
3666
+
3667
+            return $resultArray;
3668
+        }
3669
+
3670
+    }
3672 3671
 }
3673 3672
 
3674 3673
 /**
@@ -3682,8 +3681,8 @@  discard block
 block discarded – undo
3682 3681
  * @return string|string[]
3683 3682
  */
3684 3683
 function spip_sanitize_classname($classes) {
3685
-	if (is_array($classes)) {
3686
-		return array_map('spip_sanitize_classname', $classes);
3687
-	}
3688
-	return preg_replace("/[^ 0-9a-z_\-+@]/i", "", $classes);
3684
+    if (is_array($classes)) {
3685
+        return array_map('spip_sanitize_classname', $classes);
3686
+    }
3687
+    return preg_replace("/[^ 0-9a-z_\-+@]/i", "", $classes);
3689 3688
 }
Please login to merge, or discard this patch.