Skip to content
Extraits de code Groupes Projets
Valider ed9e9b65 rédigé par marcimat's avatar marcimat
Parcourir les fichiers

Correction d'une bardée de notices PHP à l'installation de SPIP. Il en reste !

parent cd61590c
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -54,9 +54,13 @@ function lister_tables_objets_sql($table_sql=null, $desc=array()){ ...@@ -54,9 +54,13 @@ function lister_tables_objets_sql($table_sql=null, $desc=array()){
static $infos_tables = null; static $infos_tables = null;
static $md5 = null; static $md5 = null;
static $plugin_hash = null; static $plugin_hash = null;
// plugins hash connu ? non si _CACHE_PLUGINS_OPT est pas encore chargé.
$_PLUGINS_HASH = defined('_PLUGINS_HASH') ? _PLUGINS_HASH : '!_CACHE_PLUGINS_OPT';
// prealablement recuperer les tables_principales // prealablement recuperer les tables_principales
if (is_null($infos_tables) if (is_null($infos_tables)
OR $plugin_hash!==_PLUGINS_HASH){ OR $plugin_hash!==$_PLUGINS_HASH){
// pas de reentrance (cas base/serial) // pas de reentrance (cas base/serial)
if ($deja_la) { if ($deja_la) {
spip_log ("Re-entrance anormale sur lister_tables_objets_sql :" spip_log ("Re-entrance anormale sur lister_tables_objets_sql :"
...@@ -64,7 +68,7 @@ function lister_tables_objets_sql($table_sql=null, $desc=array()){ ...@@ -64,7 +68,7 @@ function lister_tables_objets_sql($table_sql=null, $desc=array()){
return ($table_sql==="::md5"?$md5:array()); return ($table_sql==="::md5"?$md5:array());
} }
$deja_la = true; $deja_la = true;
$plugin_hash = _PLUGINS_HASH; // avant de lancer les pipelines $plugin_hash = $_PLUGINS_HASH; // avant de lancer les pipelines
// recuperer les declarations explicites ancienne mode // recuperer les declarations explicites ancienne mode
// qui servent a completer declarer_tables_objets_sql // qui servent a completer declarer_tables_objets_sql
......
...@@ -151,9 +151,11 @@ function base_trouver_table_dist($nom, $serveur='', $table_spip = true){ ...@@ -151,9 +151,11 @@ function base_trouver_table_dist($nom, $serveur='', $table_spip = true){
// on ne sait pas lire la structure de la table : // on ne sait pas lire la structure de la table :
// on retombe sur la description donnee dans les fichiers spip // on retombe sur la description donnee dans les fichiers spip
$desc = $fdesc; $desc = $fdesc;
$desc['exist'] = false;
} }
else else {
$desc['exist'] = true; $desc['exist'] = true;
}
$desc['table'] = $desc['table_sql'] = $nom_sql; $desc['table'] = $desc['table_sql'] = $nom_sql;
$desc['connexion']= $serveur; $desc['connexion']= $serveur;
......
...@@ -23,6 +23,8 @@ ...@@ -23,6 +23,8 @@
// securité // securité
if (!defined('_ECRIRE_INC_VERSION')) return; if (!defined('_ECRIRE_INC_VERSION')) return;
// se faciliter la lecture du charset
include_spip('inc/config');
/** /**
* Charge en mémoire la liste des caractères d'un charset * Charge en mémoire la liste des caractères d'un charset
...@@ -84,7 +86,7 @@ function init_mb_string() { ...@@ -84,7 +86,7 @@ function init_mb_string() {
AND function_exists('mb_encode_mimeheader') AND function_exists('mb_encode_mimeheader')
AND function_exists('mb_encode_numericentity') AND function_exists('mb_encode_numericentity')
AND function_exists('mb_decode_numericentity') AND function_exists('mb_decode_numericentity')
AND mb_detect_order($GLOBALS['meta']['charset']) AND mb_detect_order(lire_config('charset', _DEFAULT_CHARSET))
) { ) {
mb_internal_encoding('utf-8'); mb_internal_encoding('utf-8');
$mb = 1; $mb = 1;
...@@ -214,7 +216,9 @@ function corriger_caracteres_windows($texte, $charset='AUTO', $charset_cible='un ...@@ -214,7 +216,9 @@ function corriger_caracteres_windows($texte, $charset='AUTO', $charset_cible='un
return array_map('corriger_caracteres_windows', $texte); return array_map('corriger_caracteres_windows', $texte);
} }
if ($charset=='AUTO') $charset = $GLOBALS['meta']['charset']; if ($charset=='AUTO') {
$charset = lire_config('charset', _DEFAULT_CHARSET);
}
if ($charset == 'utf-8') { if ($charset == 'utf-8') {
$p = chr(194); $p = chr(194);
if (strpos($texte,$p)==false) if (strpos($texte,$p)==false)
...@@ -347,8 +351,9 @@ function mathml2unicode($texte) { ...@@ -347,8 +351,9 @@ function mathml2unicode($texte) {
function charset2unicode($texte, $charset='AUTO' /* $forcer: obsolete*/) { function charset2unicode($texte, $charset='AUTO' /* $forcer: obsolete*/) {
static $trans; static $trans;
if ($charset == 'AUTO') if ($charset == 'AUTO') {
$charset = $GLOBALS['meta']['charset']; $charset = lire_config('charset', _DEFAULT_CHARSET);
}
if ($charset == '') $charset = 'iso-8859-1'; if ($charset == '') $charset = 'iso-8859-1';
$charset = strtolower($charset); $charset = strtolower($charset);
...@@ -418,8 +423,9 @@ function unicode2charset($texte, $charset='AUTO') { ...@@ -418,8 +423,9 @@ function unicode2charset($texte, $charset='AUTO') {
static $CHARSET_REVERSE; static $CHARSET_REVERSE;
static $trans = array(); static $trans = array();
if ($charset == 'AUTO') if ($charset == 'AUTO') {
$charset = $GLOBALS['meta']['charset']; $charset = lire_config('charset', _DEFAULT_CHARSET);
}
switch($charset) { switch($charset) {
case 'utf-8': case 'utf-8':
...@@ -1056,7 +1062,7 @@ if (!isset($GLOBALS['meta']['pcre_u']) ...@@ -1056,7 +1062,7 @@ if (!isset($GLOBALS['meta']['pcre_u'])
OR (isset($_GET['var_mode']) AND !isset($_GET['var_profile']))) { OR (isset($_GET['var_mode']) AND !isset($_GET['var_profile']))) {
include_spip('inc/meta'); include_spip('inc/meta');
ecrire_meta('pcre_u', ecrire_meta('pcre_u',
$u = ($GLOBALS['meta']['charset'] == 'utf-8' $u = (lire_config('charset', _DEFAULT_CHARSET)
AND test_pcre_unicode()) AND test_pcre_unicode())
? 'u' :'' ? 'u' :''
); );
......
...@@ -459,7 +459,7 @@ function actualise_metas($liste_meta) ...@@ -459,7 +459,7 @@ function actualise_metas($liste_meta)
sql_updateq('spip_meta',array('impt'=>'non'),sql_in('nom',$meta_serveur)); sql_updateq('spip_meta',array('impt'=>'non'),sql_in('nom',$meta_serveur));
while (list($nom, $valeur) = each($liste_meta)) { while (list($nom, $valeur) = each($liste_meta)) {
if (!$GLOBALS['meta'][$nom]) { if (!isset($GLOBALS['meta'][$nom]) OR !$GLOBALS['meta'][$nom]) {
ecrire_meta($nom, $valeur); ecrire_meta($nom, $valeur);
} }
} }
......
...@@ -568,7 +568,7 @@ function texte_backend($texte) { ...@@ -568,7 +568,7 @@ function texte_backend($texte) {
$texte = charset2unicode($texte); $texte = charset2unicode($texte);
// Caracteres problematiques en iso-latin 1 // Caracteres problematiques en iso-latin 1
if ($GLOBALS['meta']['charset'] == 'iso-8859-1') { if (isset($GLOBALS['meta']['charset']) and $GLOBALS['meta']['charset'] == 'iso-8859-1') {
$texte = str_replace(chr(156), 'œ', $texte); $texte = str_replace(chr(156), 'œ', $texte);
$texte = str_replace(chr(140), 'Œ', $texte); $texte = str_replace(chr(140), 'Œ', $texte);
$texte = str_replace(chr(159), 'Ÿ', $texte); $texte = str_replace(chr(159), 'Ÿ', $texte);
......
...@@ -65,7 +65,7 @@ function suivre_lien($url, $lien) { ...@@ -65,7 +65,7 @@ function suivre_lien($url, $lien) {
if (preg_match(',^(mailto|javascript):,iS', $lien)) if (preg_match(',^(mailto|javascript):,iS', $lien))
return $lien; return $lien;
if (preg_match(';^((?:[a-z]{3,7}:)?//.*?)(/.*)?$;iS', $lien, $r)) { if (preg_match(';^((?:[a-z]{3,7}:)?//.*?)(/.*)?$;iS', $lien, $r)) {
$r = array_pad($r, 2, null); $r = array_pad($r, 3, null);
return $r[1].resolve_path($r[2]); return $r[1].resolve_path($r[2]);
} }
......
...@@ -72,10 +72,12 @@ function lire_metas($table='meta') { ...@@ -72,10 +72,12 @@ function lire_metas($table='meta') {
$GLOBALS[$table][$row['nom']] = $row['valeur']; $GLOBALS[$table][$row['nom']] = $row['valeur'];
sql_free($result); sql_free($result);
if (!$GLOBALS[$table]['charset'] if (!isset($GLOBALS[$table]['charset'])
OR !$GLOBALS[$table]['charset']
OR $GLOBALS[$table]['charset']=='_DEFAULT_CHARSET' // hum, correction d'un bug ayant abime quelques install OR $GLOBALS[$table]['charset']=='_DEFAULT_CHARSET' // hum, correction d'un bug ayant abime quelques install
) ) {
ecrire_meta('charset', _DEFAULT_CHARSET, NULL, $table); ecrire_meta('charset', _DEFAULT_CHARSET, NULL, $table);
}
// noter cette table de configuration dans les meta de SPIP // noter cette table de configuration dans les meta de SPIP
if ($table!=='meta') { if ($table!=='meta') {
......
...@@ -170,7 +170,7 @@ function inc_traduire_dist($ori, $lang) { ...@@ -170,7 +170,7 @@ function inc_traduire_dist($ori, $lang) {
// Si on n'est pas en utf-8, la chaine peut l'etre... // Si on n'est pas en utf-8, la chaine peut l'etre...
// le cas echeant on la convertit en entites html &#xxx; // le cas echeant on la convertit en entites html &#xxx;
if ($GLOBALS['meta']['charset'] !== 'utf-8' if ((!isset($GLOBALS['meta']['charset']) OR $GLOBALS['meta']['charset'] !== 'utf-8')
AND preg_match(',[\x7f-\xff],S', $text)) { AND preg_match(',[\x7f-\xff],S', $text)) {
include_spip('inc/charsets'); include_spip('inc/charsets');
$text = charset2unicode($text,'utf-8'); $text = charset2unicode($text,'utf-8');
......
...@@ -1808,8 +1808,10 @@ function spip_initialisation_core($pi=NULL, $pa=NULL, $ti=NULL, $ta=NULL) { ...@@ -1808,8 +1808,10 @@ function spip_initialisation_core($pi=NULL, $pa=NULL, $ti=NULL, $ta=NULL) {
// Se mefier des fichiers mal remplis! // Se mefier des fichiers mal remplis!
if (!defined('_SPIP_CHMOD')) define('_SPIP_CHMOD', 0777); if (!defined('_SPIP_CHMOD')) define('_SPIP_CHMOD', 0777);
// Le charset par defaut lors de l'installation if (!defined('_DEFAULT_CHARSET')) {
if (!defined('_DEFAULT_CHARSET')) define('_DEFAULT_CHARSET', 'utf-8'); /** Le charset par défaut lors de l'installation */
define('_DEFAULT_CHARSET', 'utf-8');
}
if (!defined('_ROOT_PLUGINS')) define('_ROOT_PLUGINS', _ROOT_RACINE . "plugins/"); if (!defined('_ROOT_PLUGINS')) define('_ROOT_PLUGINS', _ROOT_RACINE . "plugins/");
if (!defined('_ROOT_PLUGINS_DIST')) define('_ROOT_PLUGINS_DIST', _ROOT_RACINE . "plugins-dist/"); if (!defined('_ROOT_PLUGINS_DIST')) define('_ROOT_PLUGINS_DIST', _ROOT_RACINE . "plugins-dist/");
if (!defined('_ROOT_PLUGINS_SUPPL') && defined('_DIR_PLUGINS_SUPPL') && _DIR_PLUGINS_SUPPL) define('_ROOT_PLUGINS_SUPPL', _ROOT_RACINE . str_replace(_DIR_RACINE,'',_DIR_PLUGINS_SUPPL)); if (!defined('_ROOT_PLUGINS_SUPPL') && defined('_DIR_PLUGINS_SUPPL') && _DIR_PLUGINS_SUPPL) define('_ROOT_PLUGINS_SUPPL', _ROOT_RACINE . str_replace(_DIR_RACINE,'',_DIR_PLUGINS_SUPPL));
......
...@@ -39,7 +39,7 @@ function install_etape_1_dist() ...@@ -39,7 +39,7 @@ function install_etape_1_dist()
$db = array($adresse_db, _T('entree_base_donnee_2')); $db = array($adresse_db, _T('entree_base_donnee_2'));
$login = array($login_db, _T('entree_login_connexion_2')); $login = array($login_db, _T('entree_login_connexion_2'));
$pass = array($pass_db, _T('entree_mot_passe_2')); $pass = array('', _T('entree_mot_passe_2'));
$predef = array(defined('_INSTALL_SERVER_DB') ? _INSTALL_SERVER_DB:'', $predef = array(defined('_INSTALL_SERVER_DB') ? _INSTALL_SERVER_DB:'',
defined('_INSTALL_HOST_DB'), defined('_INSTALL_HOST_DB'),
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter