fix: ajouter un nettoyeur avant la liste des transactions car il y a parfois un bouton float avant

master
Cerdic 2 months ago
parent 5bc17674a8
commit 9218f05bec

@ -167,7 +167,7 @@ function formidablepaiement_affiche_enfants($flux){
$parrain = formidablepaiement_parrain($reponse['id_formulaire']);
$where = "parrain=" . sql_quote($parrain) . " AND tracking_id=" . intval($id_formulaires_reponse);
$flux['data'] .= recuperer_fond("prive/objets/liste/transactions", array('where' => $where));
$flux['data'] .= "<div class='nettoyeur'></div>" . recuperer_fond("prive/objets/liste/transactions", array('where' => $where));
}
return $flux;
}
@ -178,7 +178,7 @@ function formidablepaiement_affiche_milieu($flux){
$parrain = formidablepaiement_parrain($id_formulaire);
$where = "parrain=" . sql_quote($parrain);
$flux['data'] .= recuperer_fond("prive/objets/liste/transactions", array('where' => $where));
$flux['data'] .= "<div class='nettoyeur'></div>" . recuperer_fond("prive/objets/liste/transactions", array('where' => $where));
}
return $flux;
}

Loading…
Cancel
Save