From afdd753932734c300c2edc1a7e0b91e4f44564a0 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Sun, 29 Jun 2008 15:52:32 -0700 Subject: [PATCH] BUGFIX: got rid of double insert of notes. when you wrote a personal note on your turn, it got inserted into the database twice Signed-off-by: Arun Persaud --- include/game.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/include/game.php b/include/game.php index 2ab444b..95c055d 100644 --- a/include/game.php +++ b/include/game.php @@ -1363,14 +1363,6 @@ switch($mystatus) $comment = $commentSchweinchen . $comment; }; - /* check for note */ - if(myisset('note')) - { - $note = $_REQUEST['note']; - if($note != '') - DB_insert_note($note,$gameid,$myid); - }; - /* display played card */ $pos = DB_get_pos_by_hash($me); if($sequence==1) -- 2.25.1