Completed
Push — master ( 693048...d13319 )
by cam
02:10 queued 01:02
created
ecrire/inc/editer.php 1 patch
Spacing   +35 added lines, -36 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
 		$res['message_ok'] = _T('info_modification_enregistree');
101 101
 		if ($retour) {
102 102
 			if (strncmp($retour, 'javascript:', 11) == 0) {
103
-				$res['message_ok'] .= '<script type="text/javascript">/*<![CDATA[*/' . substr($retour, 11) . '/*]]>*/</script>';
103
+				$res['message_ok'] .= '<script type="text/javascript">/*<![CDATA[*/'.substr($retour, 11).'/*]]>*/</script>';
104 104
 				$res['editable'] = true;
105 105
 			} else {
106 106
 				$res['redirect'] = parametre_url($retour, $id_table_objet, $id);
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
 				if (!isset($erreurs[$champ])) {
141 141
 					$erreurs[$champ] = '';
142 142
 				}
143
-				$erreurs[$champ] .= _T('alerte_modif_info_concourante') . "<br /><textarea readonly='readonly' class='forml'>" . entites_html($conflit['base']) . '</textarea>';
143
+				$erreurs[$champ] .= _T('alerte_modif_info_concourante')."<br /><textarea readonly='readonly' class='forml'>".entites_html($conflit['base']).'</textarea>';
144 144
 			}
145 145
 		}
146 146
 	}
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
 	if (
217 217
 		$config_fonc
218 218
 		and !in_array($config_fonc, ['articles_edit_config', 'rubriques_edit_config', 'auteurs_edit_config'])
219
-		and $config_fonc !== $table_objet . '_edit_config'
219
+		and $config_fonc !== $table_objet.'_edit_config'
220 220
 	) {
221 221
 		if (
222 222
 			$args = test_formulaire_inclus_par_modele()
@@ -231,12 +231,12 @@  discard block
 block discarded – undo
231 231
 	// Appel direct dans un squelette
232 232
 	if (!$row) {
233 233
 		if (!$new or $lier_trad) {
234
-			if ($select = charger_fonction('precharger_' . $type, 'inc', true)) {
234
+			if ($select = charger_fonction('precharger_'.$type, 'inc', true)) {
235 235
 				$row = $select($id, $id_parent, $lier_trad);
236 236
 				// si on a une fonction precharger, elle pu faire un reglage de langue
237 237
 				$lang_default = (!empty($row['lang']) ? $row['lang'] : null);
238 238
 			} else {
239
-				$row = sql_fetsel('*', $table_objet_sql, $id_table_objet . '=' . intval($id));
239
+				$row = sql_fetsel('*', $table_objet_sql, $id_table_objet.'='.intval($id));
240 240
 			}
241 241
 			if (!$new) {
242 242
 				$md5 = controles_md5($row);
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
 	if ($config_fonc) {
287 287
 		$contexte['config'] = $config = $config_fonc($contexte);
288 288
 		if (!$lang_default) {
289
-			$lang_default = $config['langue'] ?? session_get('lang') ;
289
+			$lang_default = $config['langue'] ?? session_get('lang');
290 290
 		}
291 291
 	}
292 292
 	$config = $config + [
@@ -310,13 +310,12 @@  discard block
 block discarded – undo
310 310
 		unset($contexte['lang']);
311 311
 	}
312 312
 
313
-	$contexte['_hidden'] = "<input type='hidden' name='editer_$type' value='oui' />\n" .
314
-		(!$lier_trad ? '' :
315
-			("\n<input type='hidden' name='lier_trad' value='" .
316
-				$lier_trad .
317
-				"' />" .
318
-				"\n<input type='hidden' name='changer_lang' value='" .
319
-				$lang_default .
313
+	$contexte['_hidden'] = "<input type='hidden' name='editer_$type' value='oui' />\n".
314
+		(!$lier_trad ? '' : ("\n<input type='hidden' name='lier_trad' value='".
315
+				$lier_trad.
316
+				"' />".
317
+				"\n<input type='hidden' name='changer_lang' value='".
318
+				$lang_default.
320 319
 				"' />"))
321 320
 		. $hidden
322 321
 		. (isset($md5) ? $md5 : '');
@@ -356,14 +355,14 @@  discard block
 block discarded – undo
356 355
 	$aider = charger_fonction('aider', 'inc');
357 356
 	if (strlen($texte) > 28 * 1024) {
358 357
 		$texte = str_replace("\r\n", "\n", $texte);
359
-		$pos = strpos($texte, "\n\n", 28 * 1024);  // coupe para > 28 ko
358
+		$pos = strpos($texte, "\n\n", 28 * 1024); // coupe para > 28 ko
360 359
 		if ($pos > 0 and $pos < 32 * 1024) {
361
-			$debut = substr($texte, 0, $pos) . "\n\n<!--SPIP-->\n";
360
+			$debut = substr($texte, 0, $pos)."\n\n<!--SPIP-->\n";
362 361
 			$suite = substr($texte, $pos + 2);
363 362
 		} else {
364
-			$pos = strpos($texte, ' ', 28 * 1024);  // sinon coupe espace
363
+			$pos = strpos($texte, ' ', 28 * 1024); // sinon coupe espace
365 364
 			if (!($pos > 0 and $pos < 32 * 1024)) {
366
-				$pos = 28 * 1024;  // au pire (pas d'espace trouv'e)
365
+				$pos = 28 * 1024; // au pire (pas d'espace trouv'e)
367 366
 				$decalage = 0; // si y'a pas d'espace, il ne faut pas perdre le caract`ere
368 367
 			} else {
369 368
 				$decalage = 1;
@@ -394,13 +393,13 @@  discard block
 block discarded – undo
394 393
 	}
395 394
 
396 395
 	include_spip('inc/barre');
397
-	$textes_supplement = "<br /><span style='color: red'>" . _T('info_texte_long') . "</span>\n";
396
+	$textes_supplement = "<br /><span style='color: red'>"._T('info_texte_long')."</span>\n";
398 397
 	$nombre = 0;
399 398
 
400 399
 	while (strlen($texte) > 29 * 1024) {
401 400
 		$nombre++;
402 401
 		list($texte1, $texte) = coupe_trop_long($texte);
403
-		$textes_supplement .= '<br />' .
402
+		$textes_supplement .= '<br />'.
404 403
 			"<textarea id='texte$nombre' name='texte_plus[$nombre]'$att_text>$texte1</textarea>\n";
405 404
 	}
406 405
 
@@ -488,7 +487,7 @@  discard block
 block discarded – undo
488 487
 	$ctr = [];
489 488
 	foreach ($data as $key => $val) {
490 489
 		$m = md5($val);
491
-		$k = $prefixe . $key;
490
+		$k = $prefixe.$key;
492 491
 
493 492
 		switch ($format) {
494 493
 			case 'html':
@@ -501,7 +500,7 @@  discard block
 block discarded – undo
501 500
 	}
502 501
 
503 502
 	if ($format == 'html') {
504
-		return "\n\n<!-- controles md5 -->\n" . join("\n", $ctr) . "\n\n";
503
+		return "\n\n<!-- controles md5 -->\n".join("\n", $ctr)."\n\n";
505 504
 	} else {
506 505
 		return $ctr;
507 506
 	}
@@ -652,7 +651,7 @@  discard block
 block discarded – undo
652 651
 	// On elimine les donnees non modifiees par le formulaire (mais
653 652
 	// potentiellement modifiees entre temps par un autre utilisateur)
654 653
 	foreach ($champs as $key => $val) {
655
-		if (isset($ctr[$prefix . $key]) and $m = $ctr[$prefix . $key]) {
654
+		if (isset($ctr[$prefix.$key]) and $m = $ctr[$prefix.$key]) {
656 655
 			if (is_scalar($val) and $m == md5($val)) {
657 656
 				unset($champs[$key]);
658 657
 			}
@@ -681,7 +680,7 @@  discard block
 block discarded – undo
681 680
 	// de conflit.
682 681
 	$ctrh = $ctrq = $conflits = [];
683 682
 	foreach (array_keys($champs) as $key) {
684
-		if (isset($ctr[$prefix . $key]) and $m = $ctr[$prefix . $key]) {
683
+		if (isset($ctr[$prefix.$key]) and $m = $ctr[$prefix.$key]) {
685 684
 			$ctrh[$key] = $m;
686 685
 			$ctrq[] = $key;
687 686
 		}
@@ -715,9 +714,9 @@  discard block
 block discarded – undo
715 714
  */
716 715
 function display_conflit_champ($x) {
717 716
 	if (strstr($x, "\n") or strlen($x) > 80) {
718
-		return "<textarea style='width:99%; height:10em;'>" . entites_html($x) . "</textarea>\n";
717
+		return "<textarea style='width:99%; height:10em;'>".entites_html($x)."</textarea>\n";
719 718
 	} else {
720
-		return "<input type='text' size='40' style='width:99%' value=\"" . entites_html($x) . "\" />\n";
719
+		return "<input type='text' size='40' style='width:99%' value=\"".entites_html($x)."\" />\n";
721 720
 	}
722 721
 }
723 722
 
@@ -757,11 +756,11 @@  discard block
 block discarded – undo
757 756
 		) : $champ;
758 757
 
759 758
 		$diffs[] = "<h2>$titre</h2>\n"
760
-			. '<h3>' . _T('info_conflit_edition_differences') . "</h3>\n"
761
-			. "<div style='max-height:8em; overflow: auto; width:99%;'>" . $d . "</div>\n"
762
-			. '<h4>' . _T('info_conflit_edition_votre_version') . '</h4>'
759
+			. '<h3>'._T('info_conflit_edition_differences')."</h3>\n"
760
+			. "<div style='max-height:8em; overflow: auto; width:99%;'>".$d."</div>\n"
761
+			. '<h4>'._T('info_conflit_edition_votre_version').'</h4>'
763 762
 			. display_conflit_champ($a['post'])
764
-			. '<h4>' . _T('info_conflit_edition_version_enregistree') . '</h4>'
763
+			. '<h4>'._T('info_conflit_edition_version_enregistree').'</h4>'
765 764
 			. display_conflit_champ($base);
766 765
 	}
767 766
 
@@ -769,16 +768,16 @@  discard block
 block discarded – undo
769 768
 		$id = uniqid(rand());
770 769
 		$redirect = "<form action='$redirect' method='get'
771 770
 			id='$id'
772
-			style='float:" . $GLOBALS['spip_lang_right'] . "; margin-top:2em;'>\n"
771
+			style='float:".$GLOBALS['spip_lang_right']."; margin-top:2em;'>\n"
773 772
 			. form_hidden($redirect)
774
-			. "<input type='submit' value='" . _T('icone_retour') . "' />
773
+			. "<input type='submit' value='"._T('icone_retour')."' />
775 774
 		</form>\n";
776 775
 
777 776
 		// pour les documents, on est probablement en ajax : il faut ajaxer
778 777
 		if (_AJAX) {
779 778
 			$redirect .= '<script type="text/javascript">'
780
-				. 'setTimeout(function(){$("#' . $id . '")
781
-			.ajaxForm({target:$("#' . $id . '").parent()});
779
+				. 'setTimeout(function(){$("#'.$id.'")
780
+			.ajaxForm({target:$("#' . $id.'").parent()});
782 781
 			}, 200);'
783 782
 				. "</script>\n";
784 783
 		}
@@ -797,9 +796,9 @@  discard block
 block discarded – undo
797 796
 .diff-para-deplace .diff-supprime { background: #ffb8b8; border: 1px solid #808080; }
798 797
 .diff-para-deplace .diff-deplace { background: #b8b8ff; border: 1px solid #808080; }
799 798
 </style>'
800
-		. '<p>' . _T('info_conflit_edition_avis_non_sauvegarde') . '</p>'
801
-		. '<p>' . _T('texte_conflit_edition_correction') . '</p>'
802
-		. "<div style='text-align:" . $GLOBALS['spip_lang_left'] . ";'>"
799
+		. '<p>'._T('info_conflit_edition_avis_non_sauvegarde').'</p>'
800
+		. '<p>'._T('texte_conflit_edition_correction').'</p>'
801
+		. "<div style='text-align:".$GLOBALS['spip_lang_left'].";'>"
803 802
 		. join("\n", $diffs)
804 803
 		. "</div>\n"
805 804
 
Please login to merge, or discard this patch.
ecrire/inc/texte_mini.php 1 patch
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -44,13 +44,13 @@  discard block
 block discarded – undo
44 44
 	// celle du texte) et public (spip_lang est la langue du texte)
45 45
 	$dir = _DIR_RESTREINT ? lang_dir() : lang_dir($GLOBALS['spip_lang']);
46 46
 
47
-	$p = 'puce' . (test_espace_prive() ? '_prive' : '');
47
+	$p = 'puce'.(test_espace_prive() ? '_prive' : '');
48 48
 	if ($dir == 'rtl') {
49 49
 		$p .= '_rtl';
50 50
 	}
51 51
 
52 52
 	if (!isset($GLOBALS[$p])) {
53
-		$GLOBALS[$p] = '<span class="spip-puce ' . $dir . '"><b>–</b></span>';
53
+		$GLOBALS[$p] = '<span class="spip-puce '.$dir.'"><b>–</b></span>';
54 54
 	}
55 55
 
56 56
 	return $GLOBALS[$p];
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 }
69 69
 
70 70
 if (!defined('_BALISES_BLOCS_REGEXP')) {
71
-	define('_BALISES_BLOCS_REGEXP', ',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS');
71
+	define('_BALISES_BLOCS_REGEXP', ',</?('._BALISES_BLOCS.')[>[:space:]],iS');
72 72
 }
73 73
 
74 74
 //
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 
87 87
 	// Tester si on echappe en span ou en div
88 88
 	if (is_null($mode) or !in_array($mode, ['div', 'span'])) {
89
-		$mode = preg_match(',</?(' . _BALISES_BLOCS . ')[>[:space:]],iS', $rempl) ? 'div' : 'span';
89
+		$mode = preg_match(',</?('._BALISES_BLOCS.')[>[:space:]],iS', $rempl) ? 'div' : 'span';
90 90
 	}
91 91
 
92 92
 	// Decouper en morceaux, base64 a des probleme selon la taille de la pile
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
 	) {
123 123
 		foreach ($matches as $m) {
124 124
 			if ($m[1] === 'code') {
125
-				$code = '<code' . $m[2] . '>' . spip_htmlspecialchars($m[3]) . '</code>';
125
+				$code = '<code'.$m[2].'>'.spip_htmlspecialchars($m[3]).'</code>';
126 126
 				$pre = str_replace($m[0], $code, $pre);
127 127
 			}
128 128
 		}
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
 // Echapper les <code>...</ code>
134 134
 // https://code.spip.net/@traiter_echap_code_dist
135 135
 function traiter_echap_code_dist($regs) {
136
-	list(, , $att, $corps) = $regs;
136
+	list(,, $att, $corps) = $regs;
137 137
 	$echap = spip_htmlspecialchars($corps); // il ne faut pas passer dans entites_html, ne pas transformer les &#xxx; du code !
138 138
 
139 139
 	// ne pas mettre le <div...> s'il n'y a qu'une ligne
@@ -144,9 +144,9 @@  discard block
 block discarded – undo
144 144
 		$echap = nl2br($echap);
145 145
 		$echap = "<div style='text-align: left;' "
146 146
 			. "class='spip_code' dir='ltr'><code$att>"
147
-			. $echap . '</code></div>';
147
+			. $echap.'</code></div>';
148 148
 	} else {
149
-		$echap = "<code$att class='spip_code' dir='ltr'>" . $echap . '</code>';
149
+		$echap = "<code$att class='spip_code' dir='ltr'>".$echap.'</code>';
150 150
 	}
151 151
 
152 152
 	$echap = str_replace("\t", '&nbsp; &nbsp; &nbsp; &nbsp; ', $echap);
@@ -237,8 +237,8 @@  discard block
 block discarded – undo
237 237
 			} // sinon les traiter selon le cas
238 238
 			else {
239 239
 				if (
240
-					function_exists($f = $callback_prefix . 'traiter_echap_' . strtolower($regs[1]))
241
-					or function_exists($f = $f . '_dist')
240
+					function_exists($f = $callback_prefix.'traiter_echap_'.strtolower($regs[1]))
241
+					or function_exists($f = $f.'_dist')
242 242
 				) {
243 243
 					$echap = $f($regs);
244 244
 				}
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
 	// dans une callback autonommee
260 260
 	if (strpos($preg ? $preg : _PROTEGE_BLOCS, 'script') !== false) {
261 261
 		if (
262
-			strpos($letexte, '<' . '?') !== false and preg_match_all(
262
+			strpos($letexte, '<'.'?') !== false and preg_match_all(
263 263
 				',<[?].*($|[?]>),UisS',
264 264
 				$letexte,
265 265
 				$matches,
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
 			strpos($letexte, '<') !== false
293 293
 			and
294 294
 			preg_match_all(
295
-				',<(span|div)\sclass=[\'"]base64' . $source . '[\'"]\s(.*)>\s*</\1>,UmsS',
295
+				',<(span|div)\sclass=[\'"]base64'.$source.'[\'"]\s(.*)>\s*</\1>,UmsS',
296 296
 				$letexte,
297 297
 				$regs,
298 298
 				PREG_SET_ORDER
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
 					}
310 310
 				}
311 311
 				if ($at) {
312
-					$rempl = '<' . $reg[1] . '>' . $rempl . '</' . $reg[1] . '>';
312
+					$rempl = '<'.$reg[1].'>'.$rempl.'</'.$reg[1].'>';
313 313
 					foreach ($at as $attr => $a) {
314 314
 						$rempl = inserer_attribut($rempl, $attr, $a);
315 315
 					}
@@ -391,8 +391,8 @@  discard block
 block discarded – undo
391 391
 	$texte = nettoyer_raccourcis_typo($texte);
392 392
 
393 393
 	// balises de sauts de ligne et paragraphe
394
-	$texte = preg_replace('/<p( [^>]*)?' . '>/', "\r", $texte);
395
-	$texte = preg_replace('/<br( [^>]*)?' . '>/', "\n", $texte);
394
+	$texte = preg_replace('/<p( [^>]*)?'.'>/', "\r", $texte);
395
+	$texte = preg_replace('/<br( [^>]*)?'.'>/', "\n", $texte);
396 396
 
397 397
 	// on repasse les doubles \n en \r que nettoyer_raccourcis_typo() a pu modifier
398 398
 	$texte = str_replace("\n\n", "\r", $texte);
@@ -400,7 +400,7 @@  discard block
 block discarded – undo
400 400
 	// supprimer les tags
401 401
 	$texte = supprimer_tags($texte);
402 402
 	$texte = trim(str_replace("\n", ' ', $texte));
403
-	$texte .= "\n";  // marquer la fin
403
+	$texte .= "\n"; // marquer la fin
404 404
 
405 405
 	// corriger la longueur de coupe
406 406
 	// en fonction de la presence de caracteres utf
@@ -415,7 +415,7 @@  discard block
 block discarded – undo
415 415
 	// couper au mot precedent
416 416
 	$long = spip_substr($texte, 0, max($taille - 4, 1));
417 417
 	$u = $GLOBALS['meta']['pcre_u'];
418
-	$court = preg_replace("/([^\s][\s]+)[^\s]*\n?$/" . $u, "\\1", $long);
418
+	$court = preg_replace("/([^\s][\s]+)[^\s]*\n?$/".$u, "\\1", $long);
419 419
 	if (is_null($suite)) {
420 420
 		$suite = (defined('_COUPER_SUITE') ? _COUPER_SUITE : '&nbsp;(...)');
421 421
 	}
@@ -425,7 +425,7 @@  discard block
 block discarded – undo
425 425
 	if (spip_strlen($court) < max(0.75 * $taille, 2)) {
426 426
 		$points = '';
427 427
 		$long = spip_substr($texte, 0, $taille);
428
-		$texte = preg_replace("/([^\s][\s]+)[^\s]*\n?$/" . $u, "\\1", $long);
428
+		$texte = preg_replace("/([^\s][\s]+)[^\s]*\n?$/".$u, "\\1", $long);
429 429
 		// encore trop court ? couper au caractere
430 430
 		if (spip_strlen($texte) < 0.75 * $taille) {
431 431
 			$texte = $long;
@@ -444,7 +444,7 @@  discard block
 block discarded – undo
444 444
 	// supprimer l'eventuelle entite finale mal coupee
445 445
 	$texte = preg_replace('/&#?[a-z0-9]*$/S', '', $texte);
446 446
 
447
-	return quote_amp(trim($texte)) . $points;
447
+	return quote_amp(trim($texte)).$points;
448 448
 }
449 449
 
450 450
 
@@ -457,16 +457,16 @@  discard block
 block discarded – undo
457 457
 				define('_PROTEGE_JS_MODELES', creer_uniqid());
458 458
 			}
459 459
 			foreach ($r as $regs) {
460
-				$t = str_replace($regs[0], code_echappement($regs[0], 'javascript' . _PROTEGE_JS_MODELES), $t);
460
+				$t = str_replace($regs[0], code_echappement($regs[0], 'javascript'._PROTEGE_JS_MODELES), $t);
461 461
 			}
462 462
 		}
463
-		if (preg_match_all(',<\?php.*?($|\?' . '>),isS', $t, $r, PREG_SET_ORDER)) {
463
+		if (preg_match_all(',<\?php.*?($|\?'.'>),isS', $t, $r, PREG_SET_ORDER)) {
464 464
 			if (!defined('_PROTEGE_PHP_MODELES')) {
465 465
 				include_spip('inc/acces');
466 466
 				define('_PROTEGE_PHP_MODELES', creer_uniqid());
467 467
 			}
468 468
 			foreach ($r as $regs) {
469
-				$t = str_replace($regs[0], code_echappement($regs[0], 'php' . _PROTEGE_PHP_MODELES), $t);
469
+				$t = str_replace($regs[0], code_echappement($regs[0], 'php'._PROTEGE_PHP_MODELES), $t);
470 470
 			}
471 471
 		}
472 472
 	}
@@ -539,7 +539,7 @@  discard block
 block discarded – undo
539 539
 		if (!function_exists('attribut_html')) {
540 540
 			include_spip('inc/filtres');
541 541
 		}
542
-		$texte = "<mark class='danger-js' title='" . attribut_html(_T('erreur_contenu_suspect')) . "'>⚠️</mark> " . $texte;
542
+		$texte = "<mark class='danger-js' title='".attribut_html(_T('erreur_contenu_suspect'))."'>⚠️</mark> ".$texte;
543 543
 	}
544 544
 
545 545
 	return $texte;
@@ -609,11 +609,11 @@  discard block
 block discarded – undo
609 609
  **/
610 610
 function supprime_img($letexte, $message = null) {
611 611
 	if ($message === null) {
612
-		$message = '(' . _T('img_indisponible') . ')';
612
+		$message = '('._T('img_indisponible').')';
613 613
 	}
614 614
 
615 615
 	return preg_replace(
616
-		',<(img|doc|emb)([0-9]+)(\|([^>]*))?' . '\s*/?' . '>,i',
616
+		',<(img|doc|emb)([0-9]+)(\|([^>]*))?'.'\s*/?'.'>,i',
617 617
 		$message,
618 618
 		$letexte
619 619
 	);
Please login to merge, or discard this patch.
ecrire/inc/auth.php 1 patch
Spacing   +14 added lines, -15 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 	}
60 60
 
61 61
 	$n = intval(sql_errno());
62
-	spip_log("Erreur base de donnees $n " . sql_error());
62
+	spip_log("Erreur base de donnees $n ".sql_error());
63 63
 
64 64
 	return $n ? $n : 1;
65 65
 }
@@ -85,11 +85,11 @@  discard block
 block discarded – undo
85 85
 		// erreur SQL a afficher
86 86
 		$raison = minipres(
87 87
 			_T('info_travaux_titre'),
88
-			_T('titre_probleme_technique') . '<p><tt>' . sql_errno() . ' ' . sql_error() . '</tt></p>'
88
+			_T('titre_probleme_technique').'<p><tt>'.sql_errno().' '.sql_error().'</tt></p>'
89 89
 		);
90 90
 	} elseif (@$raison['statut']) {
91 91
 		// un simple visiteur n'a pas acces a l'espace prive
92
-		spip_log('connexion refusee a ' . @$raison['id_auteur']);
92
+		spip_log('connexion refusee a '.@$raison['id_auteur']);
93 93
 		$raison = minipres(_T('avis_erreur_connexion'), _T('avis_erreur_visiteur'));
94 94
 	} else {
95 95
 		// auteur en fin de droits ...
@@ -179,8 +179,7 @@  discard block
 block discarded – undo
179 179
 	$where = (is_numeric($id_auteur)
180 180
 		/*AND $id_auteur>0*/ // reprise lors des restaurations
181 181
 	) ?
182
-		"id_auteur=$id_auteur" :
183
-		(!strlen($GLOBALS['connect_login']) ? '' : 'login=' . sql_quote($GLOBALS['connect_login'], '', 'text'));
182
+		"id_auteur=$id_auteur" : (!strlen($GLOBALS['connect_login']) ? '' : 'login='.sql_quote($GLOBALS['connect_login'], '', 'text'));
184 183
 
185 184
 	if (!$where) {
186 185
 		return '';
@@ -222,7 +221,7 @@  discard block
 block discarded – undo
222 221
 	$GLOBALS['connect_login'] = $row['login'];
223 222
 	$GLOBALS['connect_statut'] = $row['statut'];
224 223
 
225
-	$GLOBALS['visiteur_session'] = array_merge((array)$GLOBALS['visiteur_session'], $row);
224
+	$GLOBALS['visiteur_session'] = array_merge((array) $GLOBALS['visiteur_session'], $row);
226 225
 
227 226
 	// au cas ou : ne pas memoriser les champs sensibles
228 227
 	unset($GLOBALS['visiteur_session']['pass']);
@@ -295,7 +294,7 @@  discard block
 block discarded – undo
295 294
  * @return string
296 295
  */
297 296
 function auth_a_loger() {
298
-	$redirect = generer_url_public('login', 'url=' . rawurlencode(self('&', true)), '&');
297
+	$redirect = generer_url_public('login', 'url='.rawurlencode(self('&', true)), '&');
299 298
 
300 299
 	// un echec au "bonjour" (login initial) quand le statut est
301 300
 	// inconnu signale sans doute un probleme de cookies
@@ -333,7 +332,7 @@  discard block
 block discarded – undo
333 332
 	}
334 333
 
335 334
 	if (abs(strtotime($date) - $connect_quand) >= 60) {
336
-		sql_updateq('spip_auteurs', ['en_ligne' => $date], 'id_auteur=' . intval($row['id_auteur']));
335
+		sql_updateq('spip_auteurs', ['en_ligne' => $date], 'id_auteur='.intval($row['id_auteur']));
337 336
 		$row['en_ligne'] = $date;
338 337
 	}
339 338
 
@@ -442,13 +441,13 @@  discard block
 block discarded – undo
442 441
 	if (
443 442
 		!$login
444 443
 		or !$login_base = auth_retrouver_login($login, $serveur)
445
-		or !$row = sql_fetsel('*', 'spip_auteurs', 'login=' . sql_quote($login_base, $serveur, 'text'), '', '', '', '', $serveur)
444
+		or !$row = sql_fetsel('*', 'spip_auteurs', 'login='.sql_quote($login_base, $serveur, 'text'), '', '', '', '', $serveur)
446 445
 	) {
447 446
 		// generer de fausses infos, mais credibles, pour eviter une attaque
448 447
 		// https://core.spip.net/issues/1758 + https://core.spip.net/issues/3691
449 448
 		include_spip('inc/securiser_action');
450
-		$fauxalea1 = md5('fauxalea' . secret_du_site() . $login . floor(date('U') / 86400));
451
-		$fauxalea2 = md5('fauxalea' . secret_du_site() . $login . ceil(date('U') / 86400));
449
+		$fauxalea1 = md5('fauxalea'.secret_du_site().$login.floor(date('U') / 86400));
450
+		$fauxalea2 = md5('fauxalea'.secret_du_site().$login.ceil(date('U') / 86400));
452 451
 
453 452
 		$row = [
454 453
 			'login' => $login,
@@ -570,7 +569,7 @@  discard block
 block discarded – undo
570 569
 	sql_updateq(
571 570
 		'spip_auteurs',
572 571
 		['prefs' => serialize($p)],
573
-		'id_auteur=' . intval($auteur['id_auteur'])
572
+		'id_auteur='.intval($auteur['id_auteur'])
574 573
 	);
575 574
 
576 575
 	//  bloquer ici le visiteur qui tente d'abuser de ses droits
@@ -734,7 +733,7 @@  discard block
 block discarded – undo
734 733
 		return false;
735 734
 	}
736 735
 
737
-	$row = sql_fetsel('*', 'spip_auteurs', 'login=' . sql_quote($login, $serveur, 'text'), '', '', '', '', $serveur);
736
+	$row = sql_fetsel('*', 'spip_auteurs', 'login='.sql_quote($login, $serveur, 'text'), '', '', '', '', $serveur);
738 737
 
739 738
 	if (!$row) {
740 739
 		if (
@@ -788,11 +787,11 @@  discard block
 block discarded – undo
788 787
 	$retour = $retour ? $retour : _T('icone_retour');
789 788
 	$corps .= "<p>$raison</p>[<a href='$public'>$retour</a>] ";
790 789
 	if ($url) {
791
-		$corps .= "[<a href='" . generer_url_action('cookie', "essai_auth_http=oui&$url") . "'>$re</a>]";
790
+		$corps .= "[<a href='".generer_url_action('cookie', "essai_auth_http=oui&$url")."'>$re</a>]";
792 791
 	}
793 792
 
794 793
 	if ($lien) {
795
-		$corps .= " [<a href='$ecrire'>" . _T('login_espace_prive') . '</a>]';
794
+		$corps .= " [<a href='$ecrire'>"._T('login_espace_prive').'</a>]';
796 795
 	}
797 796
 	include_spip('inc/minipres');
798 797
 	echo minipres($pb, $corps);
Please login to merge, or discard this patch.
ecrire/inc/traduire.php 1 patch
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 	static $dirs = [];
42 42
 	$liste = [];
43 43
 	foreach (creer_chemin() as $dir) {
44
-		if (!isset($dirs[$a = $dir . $dirname])) {
44
+		if (!isset($dirs[$a = $dir.$dirname])) {
45 45
 			$dirs[$a] = (is_dir($a) || !$a);
46 46
 		}
47 47
 		if ($dirs[$a]) {
@@ -67,21 +67,21 @@  discard block
 block discarded – undo
67 67
  **/
68 68
 function chercher_module_lang($module, $lang = '') {
69 69
 	if ($lang) {
70
-		$lang = '_' . $lang;
70
+		$lang = '_'.$lang;
71 71
 	}
72 72
 
73 73
 	// 1) dans un repertoire nomme lang/ se trouvant sur le chemin
74 74
 	if (
75 75
 		$f = ($module == 'local'
76
-		? find_in_path($module . $lang . '.php', 'lang/')
77
-		: find_langs_in_path($module . $lang . '.php', 'lang/'))
76
+		? find_in_path($module.$lang.'.php', 'lang/')
77
+		: find_langs_in_path($module.$lang.'.php', 'lang/'))
78 78
 	) {
79 79
 		return is_array($f) ? $f : [$f];
80 80
 	}
81 81
 
82 82
 	// 2) directement dans le chemin (old style, uniquement pour local)
83 83
 	return (($module == 'local') or strpos($module, '/'))
84
-		? (($f = find_in_path($module . $lang . '.php')) ? [$f] : false)
84
+		? (($f = find_in_path($module.$lang.'.php')) ? [$f] : false)
85 85
 		: false;
86 86
 }
87 87
 
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
  **/
106 106
 function charger_langue($lang, $module = 'spip') {
107 107
 	static $langs = [];
108
-	$var = 'i18n_' . $module . '_' . $lang;
108
+	$var = 'i18n_'.$module.'_'.$lang;
109 109
 	if (!isset($langs[$lang])) {
110 110
 		$langs[$lang] = [];
111 111
 		if ($lang) {
@@ -120,13 +120,13 @@  discard block
 block discarded – undo
120 120
 	}
121 121
 	foreach ($langs[$lang] as $l) {
122 122
 		if ($fichiers_lang = chercher_module_lang($module, $l)) {
123
-			$GLOBALS['idx_lang'] = 'i18n_' . $module . '_' . $l;
123
+			$GLOBALS['idx_lang'] = 'i18n_'.$module.'_'.$l;
124 124
 			include(array_shift($fichiers_lang));
125 125
 			surcharger_langue($fichiers_lang);
126 126
 			if ($l !== $lang) {
127
-				$GLOBALS[$var] = &$GLOBALS['i18n_' . $module . '_' . $l];
127
+				$GLOBALS[$var] = &$GLOBALS['i18n_'.$module.'_'.$l];
128 128
 			}
129
-			$GLOBALS['lang_' . $var] = $l;
129
+			$GLOBALS['lang_'.$var] = $l;
130 130
 			#spip_log("module de langue : ${module}_$l.php", 'traduire');
131 131
 			break;
132 132
 		}
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
 	foreach ($fichiers as $fichier) {
165 165
 		if (!isset($surcharges[$fichier])) {
166 166
 			$idx_lang_normal = $GLOBALS['idx_lang'];
167
-			$GLOBALS['idx_lang'] = $GLOBALS['idx_lang'] . '@temporaire';
167
+			$GLOBALS['idx_lang'] = $GLOBALS['idx_lang'].'@temporaire';
168 168
 			include($fichier);
169 169
 			$surcharges[$fichier] = $GLOBALS[$GLOBALS['idx_lang']];
170 170
 			unset($GLOBALS[$GLOBALS['idx_lang']]);
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
 		}
173 173
 		if (is_array($surcharges[$fichier])) {
174 174
 			$GLOBALS[$GLOBALS['idx_lang']] = array_merge(
175
-				(isset($GLOBALS[$GLOBALS['idx_lang']]) ? (array)$GLOBALS[$GLOBALS['idx_lang']] : []),
175
+				(isset($GLOBALS[$GLOBALS['idx_lang']]) ? (array) $GLOBALS[$GLOBALS['idx_lang']] : []),
176 176
 				$surcharges[$fichier]
177 177
 			);
178 178
 		}
@@ -250,27 +250,27 @@  discard block
 block discarded – undo
250 250
 	} else {
251 251
 		$modules = ['spip', 'ecrire'];
252 252
 		$code = $ori;
253
-		$ori_complet = implode('|', $modules) . ':' . $ori;
253
+		$ori_complet = implode('|', $modules).':'.$ori;
254 254
 	}
255 255
 
256 256
 	$desc = new SPIP_Traductions_Description();
257 257
 
258 258
 	// parcourir tous les modules jusqu'a ce qu'on trouve
259 259
 	foreach ($modules as $module) {
260
-		$var = 'i18n_' . $module . '_' . $lang;
260
+		$var = 'i18n_'.$module.'_'.$lang;
261 261
 
262 262
 		if (empty($GLOBALS[$var])) {
263 263
 			charger_langue($lang, $module);
264 264
 			// surcharges persos -- on cherche
265 265
 			// (lang/)local_xx.php et/ou (lang/)local.php ...
266
-			if (!isset($local['local_' . $lang])) {
266
+			if (!isset($local['local_'.$lang])) {
267 267
 				// redéfinir la langue en cours pour les surcharges (chercher_langue a pu le changer)
268 268
 				$GLOBALS['idx_lang'] = $var;
269 269
 				// ... (lang/)local_xx.php
270
-				$local['local_' . $lang] = chercher_module_lang('local', $lang);
270
+				$local['local_'.$lang] = chercher_module_lang('local', $lang);
271 271
 			}
272
-			if ($local['local_' . $lang]) {
273
-				surcharger_langue($local['local_' . $lang]);
272
+			if ($local['local_'.$lang]) {
273
+				surcharger_langue($local['local_'.$lang]);
274 274
 			}
275 275
 			// ... puis (lang/)local.php
276 276
 			if (!isset($local['local'])) {
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
 		if (isset($GLOBALS[$var][$code])) {
285 285
 			$desc->code = $code;
286 286
 			$desc->module = $module;
287
-			$desc->langue = $GLOBALS['lang_' . $var];
287
+			$desc->langue = $GLOBALS['lang_'.$var];
288 288
 			$desc->texte = $GLOBALS[$var][$code];
289 289
 			break;
290 290
 		}
@@ -339,13 +339,13 @@  discard block
 block discarded – undo
339 339
 	if (!$desc->mode and $desc->texte) {
340 340
 		// ne pas modifier 2 fois l'affichage
341 341
 		$desc->mode = 'traduction';
342
-		$classe = 'debug-traduction' . ($desc->module == 'ecrire' ? '-prive' : '');
342
+		$classe = 'debug-traduction'.($desc->module == 'ecrire' ? '-prive' : '');
343 343
 		$desc->texte = '<span '
344
-			. 'lang=' . $desc->langue
345
-			. ' class=' . $classe
346
-			. ' data-module=' . $desc->module
347
-			. ' data-code=' . $desc->code
348
-			. ' title=' . $modules . '(' . $desc->langue . ')>'
344
+			. 'lang='.$desc->langue
345
+			. ' class='.$classe
346
+			. ' data-module='.$desc->module
347
+			. ' data-code='.$desc->code
348
+			. ' title='.$modules.'('.$desc->langue.')>'
349 349
 			. $desc->texte
350 350
 			. '</span>';
351 351
 		$desc->texte = str_replace(
Please login to merge, or discard this patch.
ecrire/inc/lang_liste.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 	'cpf_dom' => 'Krey&ograve;l',
51 51
 	'cpf_hat' => 'Krey&ograve;l (Peyi Dayiti)',
52 52
 	'cs' => '&#269;e&#353;tina',
53
-	'cy' => 'Cymraeg',  # welsh, gallois
53
+	'cy' => 'Cymraeg', # welsh, gallois
54 54
 	'da' => 'dansk',
55 55
 	'de' => 'Deutsch',
56 56
 	'dz' => 'Bhutani',
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
 	'hi' => '&#2361;&#2367;&#2306;&#2342;&#2368;',
93 93
 	'hr' => 'hrvatski',
94 94
 	'hu' => 'magyar',
95
-	'hy' => '&#1344;&#1377;&#1397;&#1381;&#1408;&#1381;&#1398;',// Arménien
95
+	'hy' => '&#1344;&#1377;&#1397;&#1381;&#1408;&#1381;&#1398;', // Arménien
96 96
 	'ia' => 'Interlingua',
97 97
 	'id' => 'Indonesia',
98 98
 	'ie' => 'Interlingue',
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 	'ka' => '&#4325;&#4304;&#4320;&#4311;&#4323;&#4314;&#4312;',
107 107
 	'kk' => '&#1179;&#1072;&#1079;&#1072;&#1179;&#32;&#1090;&#1110;&#1083;&#1110;', // Kazakh
108 108
 	'kl' => 'kalaallisut',
109
-	'km' => '&#6039;&#6070;&#6047;&#6070;&#6017;&#6098;&#6040;&#6082;&#6042;',// Khmer
109
+	'km' => '&#6039;&#6070;&#6047;&#6070;&#6017;&#6098;&#6040;&#6082;&#6042;', // Khmer
110 110
 	'kn' => 'Kannada',
111 111
 	'ko' => '&#54620;&#44397;&#50612;',
112 112
 	'kok' => '&#2325;&#2379;&#2306;&#2325;&#2339;&#2368;',
@@ -176,8 +176,8 @@  discard block
 block discarded – undo
176 176
 	'sh_latn' => 'srpskohrvastski',
177 177
 	'sh_cyrl' => '&#1057;&#1088;&#1087;&#1089;&#1082;&#1086;&#1093;&#1088;&#1074;&#1072;&#1090;&#1089;&#1082;&#1080;',
178 178
 	'si' => 'Sinhalese',
179
-	'sk' => 'sloven&#269;ina',  // (Slovakia)
180
-	'sl' => 'sloven&#353;&#269;ina',  // (Slovenia)
179
+	'sk' => 'sloven&#269;ina', // (Slovakia)
180
+	'sl' => 'sloven&#353;&#269;ina', // (Slovenia)
181 181
 	'sm' => 'Samoan',
182 182
 	'sn' => 'Shona',
183 183
 	'so' => 'Somali',
Please login to merge, or discard this patch.
ecrire/inc/lien.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 	return $r ? $r : traiter_lien_explicite($ref, $texte, $pour, $connect, $echappe_typo);
103 103
 }
104 104
 
105
-define('_EXTRAIRE_LIEN', ',^\s*(?:' . _PROTOCOLES_STD . '):?/?/?\s*$,iS');
105
+define('_EXTRAIRE_LIEN', ',^\s*(?:'._PROTOCOLES_STD.'):?/?/?\s*$,iS');
106 106
 
107 107
 // https://code.spip.net/@traiter_lien_explicite
108 108
 function traiter_lien_explicite($ref, $texte = '', $pour = 'url', $connect = '', $echappe_typo = true) {
@@ -119,19 +119,19 @@  discard block
 block discarded – undo
119 119
 		$lien_court = charger_fonction('lien_court', 'inc');
120 120
 		$texte = $lien_court($texte);
121 121
 		if ($echappe_typo) {
122
-			$texte = '<html>' . quote_amp($texte) . '</html>';
122
+			$texte = '<html>'.quote_amp($texte).'</html>';
123 123
 		}
124 124
 	}
125 125
 
126 126
 	// petites corrections d'URL
127 127
 	if (preg_match('/^www\.[^@]+$/S', $lien)) {
128
-		$lien = 'http://' . $lien;
128
+		$lien = 'http://'.$lien;
129 129
 	} else {
130 130
 		if (strpos($lien, '@') && email_valide($lien)) {
131 131
 			if (!$texte) {
132 132
 				$texte = $lien;
133 133
 			}
134
-			$lien = 'mailto:' . $lien;
134
+			$lien = 'mailto:'.$lien;
135 135
 		}
136 136
 	}
137 137
 
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
 }
148 148
 
149 149
 function liens_implicite_glose_dist($texte, $id, $type, $args, $ancre, $connect = '') {
150
-	if (function_exists($f = 'glossaire_' . $ancre)) {
150
+	if (function_exists($f = 'glossaire_'.$ancre)) {
151 151
 		$url = $f($texte, $id);
152 152
 	} else {
153 153
 		$url = glossaire_std($texte);
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
 	if (!($match = typer_raccourci($ref))) {
162 162
 		return false;
163 163
 	}
164
-	@list($type, , $id, , $args, , $ancre) = $match;
164
+	@list($type,, $id,, $args,, $ancre) = $match;
165 165
 	// attention dans le cas des sites le lien doit pointer non pas sur
166 166
 	// la page locale du site, mais directement sur le site lui-meme
167 167
 	if ($f = charger_fonction("implicite_$type", 'liens', true)) {
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
 		$r['titre'] = $texte;
189 189
 	}
190 190
 	if (!@$r['titre']) {
191
-		$r['titre'] = _T($type) . " $id";
191
+		$r['titre'] = _T($type)." $id";
192 192
 	}
193 193
 	if ($pour == 'titre') {
194 194
 		return $r['titre'];
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
 		and $mime = sql_getfetsel(
202 202
 			'mime_type',
203 203
 			'spip_types_documents',
204
-			'extension IN (' . sql_get_select('extension', 'spip_documents', 'id_document=' . sql_quote($id)) . ')',
204
+			'extension IN ('.sql_get_select('extension', 'spip_documents', 'id_document='.sql_quote($id)).')',
205 205
 			'',
206 206
 			'',
207 207
 			'',
@@ -304,11 +304,11 @@  discard block
 block discarded – undo
304 304
 	'(<([a-z_-]{3,})' # <modele
305 305
 	. '\s*([0-9]*)\s*' # id
306 306
 	. '([|](?:<[^<>]*>|[^>])*?)?' # |arguments (y compris des tags <...>)
307
-	. '\s*/?' . '>)' # fin du modele >
307
+	. '\s*/?'.'>)' # fin du modele >
308 308
 	. '\s*(<\/a>)?' # eventuel </a>
309 309
 );
310 310
 
311
-define('_RACCOURCI_MODELE_DEBUT', '@^' . _RACCOURCI_MODELE . '@isS');
311
+define('_RACCOURCI_MODELE_DEBUT', '@^'._RACCOURCI_MODELE.'@isS');
312 312
 
313 313
 // https://code.spip.net/@traiter_modeles
314 314
 function traiter_modeles($texte, $doublons = false, $echap = '', $connect = '', $liens = null, $env = []) {
@@ -388,7 +388,7 @@  discard block
 block discarded – undo
388 388
 						if (test_espace_prive()) {
389 389
 							$modele = entites_html(substr($texte, $a, $cherche));
390 390
 							if (!is_null($liens)) {
391
-								$modele = '<pre>' . str_replace($liens[0], $liens[1], $modele) . '</pre>';
391
+								$modele = '<pre>'.str_replace($liens[0], $liens[1], $modele).'</pre>';
392 392
 							}
393 393
 						}
394 394
 					}
Please login to merge, or discard this patch.
ecrire/inc/config.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -335,7 +335,7 @@  discard block
 block discarded – undo
335 335
 			if (strncmp($url, 'configurer_', 11) == 0) {
336 336
 				$deja[$url] = $b;
337 337
 			} elseif ($b['url'] == 'configurer' and preg_match(',cfg=([a-z0-9_]+),i', $b['args'], $match)) {
338
-				$deja['configurer_' . $match[1]] = $b;
338
+				$deja['configurer_'.$match[1]] = $b;
339 339
 			}
340 340
 		}
341 341
 	}
@@ -348,10 +348,10 @@  discard block
 block discarded – undo
348 348
 
349 349
 	// trouver toutes les pages configurer_xxx de l'espace prive
350 350
 	// et construire un tableau des entrees qui ne sont pas dans $deja
351
-	$pages = find_all_in_path('prive/squelettes/contenu/', 'configurer_.*[.]' . _EXTENSION_SQUELETTES . '$');
351
+	$pages = find_all_in_path('prive/squelettes/contenu/', 'configurer_.*[.]'._EXTENSION_SQUELETTES.'$');
352 352
 
353 353
 	foreach ($pages as $page) {
354
-		$configurer = basename($page, '.' . _EXTENSION_SQUELETTES);
354
+		$configurer = basename($page, '.'._EXTENSION_SQUELETTES);
355 355
 		if (!isset($exclure[$configurer])) {
356 356
 			$liste[$configurer] = [
357 357
 				'parent' => 'bando_configuration',
@@ -371,9 +371,9 @@  discard block
 block discarded – undo
371 371
 
372 372
 	// trouver tous les formulaires/configurer_
373 373
 	// et construire un tableau des entrees
374
-	$pages = find_all_in_path('formulaires/', 'configurer_.*[.]' . _EXTENSION_SQUELETTES . '$');
374
+	$pages = find_all_in_path('formulaires/', 'configurer_.*[.]'._EXTENSION_SQUELETTES.'$');
375 375
 	foreach ($pages as $page) {
376
-		$configurer = basename($page, '.' . _EXTENSION_SQUELETTES);
376
+		$configurer = basename($page, '.'._EXTENSION_SQUELETTES);
377 377
 		if (
378 378
 			!isset($forms[$configurer])
379 379
 			and !isset($liste[$configurer])
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
 			$liste[$configurer] = [
383 383
 				'parent' => 'bando_configuration',
384 384
 				'url' => 'configurer',
385
-				'args' => 'cfg=' . substr($configurer, 11),
385
+				'args' => 'cfg='.substr($configurer, 11),
386 386
 				'titre' => _T("configurer:{$configurer}_titre"),
387 387
 				'icone' => find_in_theme($i = "images/{$configurer}-16.png") ? $i : $icone_defaut,
388 388
 			];
@@ -414,8 +414,8 @@  discard block
 block discarded – undo
414 414
 
415 415
 	// evaluer le fond en lui passant un exec coherent pour que les pipelines le reconnaissent
416 416
 	// et reperer les formulaires CVT configurer_xx insereres par les plugins via pipeline
417
-	$config = basename(substr($file, 0, -strlen('.' . _EXTENSION_SQUELETTES)));
418
-	spip_log('Calcul de ' . "prive/squelettes/contenu/$config");
417
+	$config = basename(substr($file, 0, -strlen('.'._EXTENSION_SQUELETTES)));
418
+	spip_log('Calcul de '."prive/squelettes/contenu/$config");
419 419
 	$fond = recuperer_fond("prive/squelettes/contenu/$config", ['exec' => $config]);
420 420
 
421 421
 	// passer dans le pipeline affiche_milieu pour que les plugins puissent ajouter leur formulaires...
Please login to merge, or discard this patch.
ecrire/inc/invalideur.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
 	$n = 0;
46 46
 	$time = isset($GLOBALS['meta']['cache_mark']) ? $GLOBALS['meta']['cache_mark'] : 0;
47 47
 	for ($i = 0; $i < 256; $i++) {
48
-		$dir = _DIR_CACHE . sprintf('%02s', dechex($i));
48
+		$dir = _DIR_CACHE.sprintf('%02s', dechex($i));
49 49
 		if (@is_dir($dir) and is_readable($dir) and $d = opendir($dir)) {
50 50
 			while (($f = readdir($d)) !== false) {
51 51
 				if (preg_match(',^[[0-9a-f]+\.cache$,S', $f) and $a = stat("$dir/$f")) {
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 
103 103
 	// stocker la date_modif_$objet (ne sert a rien pour le moment)
104 104
 	if (isset($objet)) {
105
-		ecrire_meta('derniere_modif_' . $objet, time());
105
+		ecrire_meta('derniere_modif_'.$objet, time());
106 106
 	}
107 107
 
108 108
 	// si $derniere_modif_invalide est un array('article', 'rubrique')
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
 		)
202 202
 	) {
203 203
 		// supprimer le fichier (de facon propre)
204
-		supprimer_fichier(_DIR_CACHE . $cache);
204
+		supprimer_fichier(_DIR_CACHE.$cache);
205 205
 	} else {
206 206
 		spip_log("Nom de fichier cache incorrect : $cache");
207 207
 	}
Please login to merge, or discard this patch.
ecrire/inc/securiser_action.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
 	}
92 92
 
93 93
 	$arg = parametre_url($url_action, 'arg');
94
-	$confirm = md5("$action:$arg:" . realpath(__FILE__));
94
+	$confirm = md5("$action:$arg:".realpath(__FILE__));
95 95
 	if (_request('confirm_action') === $confirm) {
96 96
 		return true;
97 97
 	}
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
 		} else {
146 146
 			return generer_url_action(
147 147
 				$action,
148
-				'arg=' . rawurlencode($arg) . "&hash=$hash" . (!$r ? '' : "&redirect=$r"),
148
+				'arg='.rawurlencode($arg)."&hash=$hash".(!$r ? '' : "&redirect=$r"),
149 149
 				$mode,
150 150
 				$public
151 151
 			);
@@ -156,9 +156,9 @@  discard block
 block discarded – undo
156 156
 	$hash = calculer_action_auteur("$action-$arg");
157 157
 	$att .= " style='margin: 0px; border: 0px'";
158 158
 	if ($redirect) {
159
-		$redirect = "\n\t\t<input name='redirect' type='hidden' value='" . str_replace("'", '&#39;', $redirect) . "' />";
159
+		$redirect = "\n\t\t<input name='redirect' type='hidden' value='".str_replace("'", '&#39;', $redirect)."' />";
160 160
 	}
161
-	$mode .= $redirect . "
161
+	$mode .= $redirect."
162 162
 <input name='hash' type='hidden' value='$hash' />
163 163
 <input name='arg' type='hidden' value='$arg' />";
164 164
 
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
  */
230 230
 function _action_auteur($action, $id_auteur, $pass, $alea) {
231 231
 	static $sha = [];
232
-	if (!isset($sha[$id_auteur . $pass . $alea])) {
232
+	if (!isset($sha[$id_auteur.$pass.$alea])) {
233 233
 		if (!isset($GLOBALS['meta'][$alea])) {
234 234
 			if (!$exec = _request('exec') or !autoriser_sans_cookie($exec)) {
235 235
 				include_spip('inc/acces');
@@ -243,12 +243,12 @@  discard block
 block discarded – undo
243 243
 			}
244 244
 		}
245 245
 		include_spip('auth/sha256.inc');
246
-		$sha[$id_auteur . $pass . $alea] = spip_sha256($id_auteur . $pass . @$GLOBALS['meta'][$alea]);
246
+		$sha[$id_auteur.$pass.$alea] = spip_sha256($id_auteur.$pass.@$GLOBALS['meta'][$alea]);
247 247
 	}
248 248
 	if (function_exists('sha1')) {
249
-		return sha1($action . $sha[$id_auteur . $pass . $alea]);
249
+		return sha1($action.$sha[$id_auteur.$pass.$alea]);
250 250
 	} else {
251
-		return md5($action . $sha[$id_auteur . $pass . $alea]);
251
+		return md5($action.$sha[$id_auteur.$pass.$alea]);
252 252
 	}
253 253
 }
254 254
 
@@ -332,9 +332,9 @@  discard block
 block discarded – undo
332 332
  */
333 333
 function calculer_cle_action($action) {
334 334
 	if (function_exists('sha1')) {
335
-		return sha1($action . secret_du_site());
335
+		return sha1($action.secret_du_site());
336 336
 	} else {
337
-		return md5($action . secret_du_site());
337
+		return md5($action.secret_du_site());
338 338
 	}
339 339
 }
340 340
 
@@ -374,7 +374,7 @@  discard block
 block discarded – undo
374 374
 	// On nettoie l’URL de tous les var_.
375 375
 	$url = nettoyer_uri_var($url);
376 376
 
377
-	$token = _action_auteur('previsualiser-' . $url, $id_auteur, null, $alea);
377
+	$token = _action_auteur('previsualiser-'.$url, $id_auteur, null, $alea);
378 378
 	return "$id_auteur-$token";
379 379
 }
380 380
 
Please login to merge, or discard this patch.