From e7ad0978f60f2eaddfa5fbfe5896792e172852ea Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Wed, 11 Dec 2024 12:18:22 +0100 Subject: [PATCH] bugfix XML-Rechnung Smarty --- www/pages/rechnung.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/pages/rechnung.php b/www/pages/rechnung.php index 86fc9c41..e6402373 100644 --- a/www/pages/rechnung.php +++ b/www/pages/rechnung.php @@ -1377,7 +1377,7 @@ class Rechnung extends GenRechnung $smarty = new Smarty; $directory = $this->app->erp->GetTMP().'/smarty/templates'; $smarty->setCompileDir($directory); - $smarty->assign('rechnung', $output); + $smarty->assign('rechnung', $result); $output = $smarty->fetch('string:'.$template); } }