From 1cc28eaacbcb2e5a5b3a788d17d39b66fb8898f7 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Mon, 10 Dec 2012 13:22:37 +0100 Subject: [PATCH] points calculation bug fixed --- web/briskin5/Obj/briskin5.phh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/web/briskin5/Obj/briskin5.phh b/web/briskin5/Obj/briskin5.phh index bd358a0..daf02b3 100644 --- a/web/briskin5/Obj/briskin5.phh +++ b/web/briskin5/Obj/briskin5.phh @@ -277,17 +277,17 @@ class Bin5_table extends Table { function asta2mult($asta_pnt) { if ($asta_pnt > 110) - return (5); + return (6); else if ($asta_pnt > 100) - return (4); + return (5); else if ($asta_pnt > 90) - return (3); + return (4); else if ($asta_pnt > 80) - return (2); + return (3); else if ($asta_pnt > 70) - return (1); + return (2); else - return (0); + return (1); } function multer($is_new) -- 2.17.1