From 79b0313be5341092d0c59e8581018b912ec0ac24 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 35cba5b1..39b986b4 100644 --- a/www/pages/rechnung.php +++ b/www/pages/rechnung.php @@ -1378,7 +1378,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); } }