donau

Donation authority for GNU Taler (experimental)
Log | Files | Refs | Submodules | README | LICENSE

commit b151ab0afd0efd159dbed1e6b8b485c59cb4977b
parent 6f9a1e350dba496e6f311816e7f64771a225a987
Author: Christian Grothoff <christian@grothoff.org>
Date:   Tue,  2 Jun 2026 21:05:32 +0200

fix inverted boolean

Diffstat:
Msrc/donaudb/donau_do_insert_issued_receipts.sql | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/donaudb/donau_do_insert_issued_receipts.sql b/src/donaudb/donau_do_insert_issued_receipts.sql @@ -52,7 +52,7 @@ BEGIN -- server travelled back in time? wild, but -- we closed the books on the previous year, -- so assume balance was exceeded. - out_smaller_than_max_per_year = TRUE; + out_smaller_than_max_per_year = FALSE; RETURN; END IF; IF (my_year < in_year)