FIX removing unecessary write_log

This commit is contained in:
Nonimart 2025-09-04 17:08:10 +02:00
parent c4e8479b26
commit 2c08303099

View File

@ -150,7 +150,7 @@ function build_footnotes_index_from_content($content)
if ($has_footnotes) { if ($has_footnotes) {
foreach ($matches as $index => $match) { foreach ($matches as $index => $match) {
write_log($match);
// Le contenu peut être dans match[1] ou match[2] selon l'ordre des attributs // Le contenu peut être dans match[1] ou match[2] selon l'ordre des attributs
$footnote_content = !empty($match[1]) ? $match[1] : $match[2]; $footnote_content = !empty($match[1]) ? $match[1] : $match[2];
if (!empty($footnote_content)) { if (!empty($footnote_content)) {