From ebc93e6a794d84e2260370734af58ad649760bf8 Mon Sep 17 00:00:00 2001 From: Janusz Dobrowolski Date: Sun, 3 Feb 2013 19:57:15 +0100 Subject: [PATCH] Added $space parameter to display_footer_exit() helper. --- includes/ui/ui_view.inc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; } -- 2.30.2