From: Nik Okuntseff Date: Sun, 4 Nov 2018 13:28:51 +0000 (+0000) Subject: Fixed changed name in a couple of places. X-Git-Tag: timetracker_1.19-1~719 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=39646912fc3018f2a6922ba6716be22a91da14e9;p=timetracker.git Fixed changed name in a couple of places. --- diff --git a/WEB-INF/templates/footer.tpl b/WEB-INF/templates/footer.tpl index 1d02b7d7..c10f48c9 100644 --- a/WEB-INF/templates/footer.tpl +++ b/WEB-INF/templates/footer.tpl @@ -12,7 +12,7 @@
-
 Anuko Time Tracker 1.18.07.4357 | Copyright © Anuko | +  Anuko Time Tracker 1.18.07.4358 | Copyright © Anuko | {$i18n.footer.credits} | {$i18n.footer.license} | {$i18n.footer.improve} diff --git a/group_edit.php b/group_edit.php index 9c4cf369..e9d5189a 100644 --- a/group_edit.php +++ b/group_edit.php @@ -65,7 +65,7 @@ if ($request->isPost()) { $cl_bcc_email = trim($request->getParameter('bcc_email')); $cl_allow_ip = trim($request->getParameter('allow_ip')); } else { - $cl_group = $user->group; + $cl_group = $user->group_name; $cl_currency = ($user->currency == ''? CURRENCY_DEFAULT : $user->currency); $cl_lang = $user->lang; $cl_decimal_mark = $user->decimal_mark; diff --git a/invoice_send.php b/invoice_send.php index ca76f34b..135453b5 100644 --- a/invoice_send.php +++ b/invoice_send.php @@ -58,7 +58,7 @@ if ($request->isPost()) { } else { $cl_receiver = $sc->getValue(SYSC_LAST_INVOICE_EMAIL); $cl_cc = $sc->getValue(SYSC_LAST_INVOICE_CC); - $cl_subject = $i18n->get('title.invoice').' '.$invoice['name'].', '.$user->group; + $cl_subject = $i18n->get('title.invoice').' '.$invoice['name'].', '.$user->group_name; } $form = new Form('mailForm');