From: Janusz Dobrowolski Date: Sun, 3 Feb 2013 18:57:15 +0000 (+0100) Subject: Added $space parameter to display_footer_exit() helper. X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=ebc93e6a794d84e2260370734af58ad649760bf8;p=textcart.git Added $space parameter to display_footer_exit() helper. --- diff --git a/includes/ui/ui_view.inc b/includes/ui/ui_view.inc index 616a0ff..e9c6734 100644 --- a/includes/ui/ui_view.inc +++ b/includes/ui/ui_view.inc @@ -465,9 +465,10 @@ function display_edit_tax_items($taxes, $columns, $tax_included, $leftspan=0) //-------------------------------------------------------------------------------------- -function display_footer_exit() +function display_footer_exit($space=2) { - br(2); + if ($space) + br($space); end_page(false, false, true); exit; }