X-Git-Url: http://git.treefish.org/banana.git/blobdiff_plain/98bd1a7add3a56c08fb03293824e392b6d871613..79c955a5969b6a1688c85c81c92d98f47e09d7b3:/submit.php?ds=sidebyside
diff --git a/submit.php b/submit.php
index c98678a..fa581f8 100644
--- a/submit.php
+++ b/submit.php
@@ -17,11 +17,10 @@
     $sessionid = $SESSIONS[$SESSIONS_next]['id'];
 
     if($db->query("SELECT COUNT(*) FROM workdone WHERE mnumber = $mnumber AND session = $sessionid")->fetch(PDO::FETCH_NUM)[0] == 1) {
-      print '
';
-        print '| You already submitted results for this session | 
|---|
';
+      $db->query("DELETE FROM workdone WHERE mnumber = $mnumber AND session = $sessionid");
+      print '';
+        print '| deleted old submission | 
|---|
';
       print '
';
-      print "You can only submit your calculated examples once!";
-      exit;
     }
 
     $excount = count($exchecked);