X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/d26c95718cac0a2994ab4e9633b59f420a0816b4..d9b4512fae9de17f4bc9d77c7532db6ada9bf8c3:/invoice_view.php diff --git a/invoice_view.php b/invoice_view.php index 79efdd9b..2bb98763 100644 --- a/invoice_view.php +++ b/invoice_view.php @@ -52,7 +52,7 @@ $tax = 0; foreach($invoice_items as $item) $subtotal += $item['cost']; if ($tax_percent) { - $tax_expenses = in_array('et', explode(',', $user->plugins)); + $tax_expenses = $user->isPluginEnabled('et'); foreach($invoice_items as $item) { if ($item['type'] == 2 && !$tax_expenses) continue; @@ -74,7 +74,7 @@ if ('.' != $user->decimal_mark) { $colspan = 4; if (MODE_PROJECTS == $user->tracking_mode) $colspan++; -else if (MODE_PROJECTS_AND_TASKS == $user->tracking_mode) +elseif (MODE_PROJECTS_AND_TASKS == $user->tracking_mode) $colspan += 2; $smarty->assign('invoice_id', $invoice_id);