2020-02-18 13:23:20 +01:00
|
|
|
<?php
|
|
|
|
|
2020-05-16 12:21:49 +02:00
|
|
|
if (!defined('_ECRIRE_INC_VERSION')) {
|
|
|
|
return;
|
2020-02-18 13:23:20 +01:00
|
|
|
}
|
|
|
|
|
2020-05-16 12:21:49 +02:00
|
|
|
// corriger les intertitres de SPIP
|
|
|
|
$GLOBALS['debut_intertitre'] = "\n<h2>";
|
2020-02-18 13:23:20 +01:00
|
|
|
$GLOBALS['fin_intertitre'] = "</h2>\n";
|
2020-05-16 12:21:49 +02:00
|
|
|
|
|
|
|
// Blocs Zcore
|
|
|
|
$GLOBALS['z_blocs'] = array(
|
|
|
|
'content',
|
|
|
|
'head',
|
|
|
|
'header',
|
|
|
|
'breadcrumb',
|
|
|
|
'extra',
|
|
|
|
'aside',
|
|
|
|
'connex',
|
|
|
|
'footer',
|
|
|
|
);
|
|
|
|
|
2020-12-03 10:11:26 +01:00
|
|
|
define('_CONTENT_WIDTH', 990);
|
|
|
|
define('_IMAGE_RATIO', '1:1');
|
2020-12-07 15:34:44 +01:00
|
|
|
|
2021-02-11 16:44:32 +01:00
|
|
|
// obfusquer les nam des formulaires avec nospam https://contrib.spip.net/NoSPAM#Obfusquer-les-name-du-formulaire
|
|
|
|
define('_SPAM_ENCRYPT_NAME', true);
|
|
|
|
// proteger les formulaires abomailman
|
|
|
|
$GLOBALS['formulaires_no_spam'][] = 'abomailman,abomailman_mini_une_liste';
|