From 8a241578747d0505de995f741fbb4aef061036f0 Mon Sep 17 00:00:00 2001
From: Matthieu Marcillaud <marcimat@rezo.net>
Date: Mon, 4 Jun 2012 15:52:38 +0000
Subject: [PATCH] Corrections de notices PHP
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

À noter que dans _T parfois la globale 'spip_lang' n'est étrangement pas définie, par exemple dans l'ajax du brouteur de l'espace privé. J'ai posé un pis-aller mais je me demande si c'est pas un problème plus en amont.
---
 ecrire/inc/actions.php   | 2 +-
 ecrire/inc/pipelines.php | 4 ++--
 ecrire/inc/utils.php     | 8 +++++++-
 3 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/ecrire/inc/actions.php b/ecrire/inc/actions.php
index 76369053bc..3cc83c7b96 100644
--- a/ecrire/inc/actions.php
+++ b/ecrire/inc/actions.php
@@ -60,7 +60,7 @@ function ajax_retour($corps, $content_type = null){
 	if (isset($_COOKIE['spip_admin'])
 	    AND ((_request('var_mode')=='debug') OR !empty($GLOBALS['tableau_des_temps'])))
 		$e = erreur_squelette();
-	if (isset($GLOBALS['transformer_xml']) OR $GLOBALS['exec']=='valider_xml'){
+	if (isset($GLOBALS['transformer_xml']) OR (isset($GLOBALS['exec']) AND $GLOBALS['exec']=='valider_xml')){
 		$debut = _DOCTYPE_ECRIRE
 		         ."<html><head><title>Debug Spip Ajax</title></head>"
 		         ."<body><div>\n\n"
diff --git a/ecrire/inc/pipelines.php b/ecrire/inc/pipelines.php
index 5995472d31..11a6fd6093 100644
--- a/ecrire/inc/pipelines.php
+++ b/ecrire/inc/pipelines.php
@@ -98,7 +98,7 @@ function f_insert_head($texte) {
 // Inserer au besoin les boutons admins
 // http://doc.spip.org/@f_admin
 function f_admin ($texte) {
-	if ($GLOBALS['affiche_boutons_admin']) {
+	if (isset($GLOBALS['affiche_boutons_admin']) AND $GLOBALS['affiche_boutons_admin']) {
 		include_spip('public/admin');
 		$texte = affiche_boutons_admin($texte);
 	}
@@ -141,4 +141,4 @@ function f_queue(&$texte){
 	return $texte;
 }
 
-?>
\ No newline at end of file
+?>
diff --git a/ecrire/inc/utils.php b/ecrire/inc/utils.php
index cec337f0ad..34459920e8 100644
--- a/ecrire/inc/utils.php
+++ b/ecrire/inc/utils.php
@@ -490,7 +490,13 @@ function _T($texte, $args=array(), $options=array()) {
 		unset($args['spip_lang']);
 	}
 	// Sinon on prend la langue du contexte
-	else{
+	else {
+		// [fixme] dans certains cas d'ajax, la globale n'est pas presente
+		// c'est peut etre un probleme plus en amont.
+		if (!isset($GLOBALS['spip_lang'])) {
+			include_spip('inc/lang');
+			utiliser_langue_visiteur();
+		}
 		$lang = $GLOBALS['spip_lang'];
 	}
 	$text = $traduire($texte, $lang);
-- 
GitLab