From 4c707a3c89efe772d9005b92ebfd392e2ea0f3fa Mon Sep 17 00:00:00 2001 From: nik gaffney Date: Sun, 29 Aug 2021 14:05:05 +0200 Subject: [PATCH] If there are windows, what can you see outside, what are the surroundings like? --- README.md | 8 ++++++++ f20-budget.pl | 3 ++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 74e4315..2cb674f 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,14 @@ multiplayer budget for the f20/anarchive project. forked from feral admin +## installation & configuration + +copy the ’budget.pl’ script to your cgi-bin directory and configure the relevant paths, database details and other configuration settings in the ’budget.config.pl’ file. by default the settings should be in the same directory and not executable. + +the css files are specified by url so a local file needs be accessible from the server’s webroot. + +bug reports and issues can be found at https://repo.fo.am/foam/feral-budget/-/issues + # authors - kate rich - nik gaffney diff --git a/f20-budget.pl b/f20-budget.pl index bead06d..b11d242 100644 --- a/f20-budget.pl +++ b/f20-budget.pl @@ -915,6 +915,7 @@ END $display_running = sprintf "%.2f",$running; $display_running =~ s/(\d)(?=(\d{3})+(\D|$))/$1\,/g; ## add commma + print_subtotal(" "); # spacing before running lines print_subtotal("RUNNING total IN:", "€$display_running"); } } @@ -928,7 +929,7 @@ END $display_surplus =~ s/(\d)(?=(\d{3})+(\D|$))/$1\,/g; ## add commma print_subtotal("RUNNING total OUT:","€$display_runningex"); - print_subtotal(" "," "); # spacing between running & balance lines + print_subtotal(" "); # spacing between running & balance lines print_subtotal("BALANCE OF FINANCIAL TRADE:"," €$display_surplus"); }