From 0a8c7aa0328a1847c8b687dc9b43396d7722911c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96sterreicher?= Date: Mon, 23 May 2022 17:01:15 +0200 Subject: [PATCH] =?UTF-8?q?Problem=20behoben=20wodurch=20die=20Pr=C3=BCfun?= =?UTF-8?q?g=20auf=20doppelte=20Zahlungen=20bei=20Personen=20nicht=20funkt?= =?UTF-8?q?ionierte=20die=20noch=20keine=20Studierenden=20sind?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- include/konto.class.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/konto.class.php b/include/konto.class.php index ca0950e34..7849f2605 100644 --- a/include/konto.class.php +++ b/include/konto.class.php @@ -969,10 +969,9 @@ class konto extends basis_db { $qry = "SELECT betrag FROM public.tbl_konto - JOIN public.tbl_benutzer benutzer USING(person_id) WHERE person_id IN (".$this->implode4SQL(array_filter($person_ids)).") AND studiensemester_kurzbz = ".$this->db_add_param($stsem)." - AND buchungstyp_kurzbz = ".$this->db_add_param($typ)." + AND buchungstyp_kurzbz = ".$this->db_add_param($typ)." GROUP BY buchungsnr"; if ($result = $this->db_query($qry))