30 lines
641 B
PHP
30 lines
641 B
PHP
<?php
|
|
|
|
if (!defined('_ECRIRE_INC_VERSION')) {
|
|
return;
|
|
}
|
|
|
|
// corriger les intertitres de SPIP
|
|
$GLOBALS['debut_intertitre'] = "\n<h2>";
|
|
$GLOBALS['fin_intertitre'] = "</h2>\n";
|
|
|
|
// Blocs Zcore
|
|
$GLOBALS['z_blocs'] = array(
|
|
'content',
|
|
'head',
|
|
'header',
|
|
'breadcrumb',
|
|
'extra',
|
|
'aside',
|
|
'connex',
|
|
'footer',
|
|
);
|
|
|
|
define('_CONTENT_WIDTH', 990);
|
|
define('_IMAGE_RATIO', '1:1');
|
|
|
|
// 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';
|