From dc132a388c227906c7d9553d5f627fa0d5a85627 Mon Sep 17 00:00:00 2001 From: Yaco Date: Sat, 12 Mar 2022 20:47:51 +0000 Subject: fix logs --- conf/plugin/bureaucracy/crowdfunding.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/conf/plugin/bureaucracy/crowdfunding.php b/conf/plugin/bureaucracy/crowdfunding.php index eda21cb..a5915f8 100644 --- a/conf/plugin/bureaucracy/crowdfunding.php +++ b/conf/plugin/bureaucracy/crowdfunding.php @@ -43,7 +43,7 @@ class helper_plugin_bureaucracy_handler_crowdfunding implements bureaucracy_hand foreach($fields as $row){ if ($n != 0) { - if ($row->opt["label"] === 'E-Mail') || ($row->opt["label"] === 'Correo electrónico') { + if ($row->opt["label"] === 'E-Mail' OR $row->opt["label"] === 'Correo electrónico') { $line = $line . ' | <' . $row->opt["value"] . '>'; } else { $line = $line . ' | ' . $row->opt["value"]; @@ -62,8 +62,9 @@ class helper_plugin_bureaucracy_handler_crowdfunding implements bureaucracy_hand $filepath = $INFO['filepath']; // unifica el registro si viene de idioma español - // $store_tmp = str_replace("/es/","/",$filepath); - $store = str_replace(".txt",".log.txt",$filepath); + $store_tmp = str_replace("/es/","/",$filepath); + $store_tmp2 = str_replace("/en/","/",$store_tmp); + $store = str_replace(".txt",".log.txt",$store_tmp2); // // Abre el fichero para obtener el contenido existente if(!is_file($store)){ foreach($fields as $row){ -- cgit v1.2.1