You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
641 B
29 lines
641 B
<?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';
|
|
|