Skip to content
Extraits de code Groupes Projets
Valider 594b935f rédigé par marcimat@rezo.net's avatar marcimat@rezo.net
Parcourir les fichiers

Éviter une notice PHP lors de l'appel à copie_locale() (qui appelle le pipeline post_edition !)

parent 2cb11993
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -68,10 +68,13 @@ function formidable_trouve_liens($texte){
* @return mixed
*/
function formidable_post_edition($flux){
if ($table = $flux['args']['table']
AND $id_objet = intval($flux['args']['id_objet'])
if (
isset($flux['args']['table'])
AND $table = $flux['args']['table']
AND $id_objet = intval($flux['args']['id_objet'])
AND $primary = id_table_objet($table)
AND $row = sql_fetsel("*",$table,"$primary=".intval($id_objet))){
AND $row = sql_fetsel("*",$table,"$primary=".intval($id_objet)))
{
$objet = objet_type($table);
$contenu = implode(' ',$row);
......@@ -194,4 +197,4 @@ function formidable_optimiser_base_disparus($flux){
return $flux;
}
?>
\ No newline at end of file
?>
<paquet
prefix="formidable"
categorie="communication"
version="2.9.1"
version="2.9.2"
etat="stable"
compatibilite="[3.0.0;3.1.*]"
logo="images/formidable-64.png"
......
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