]> git.treefish.org Git - banana.git/commitdiff
...
authorAlexander Schmidt <alex@treefish.org>
Thu, 27 Sep 2012 16:33:22 +0000 (18:33 +0200)
committerAlexander Schmidt <alex@treefish.org>
Thu, 27 Sep 2012 16:33:22 +0000 (18:33 +0200)
summary.php

index cfc0565c8380897d9b4be0fd00c75447eb233405..bd7ac7ff5f3e78b225c78f0c8b1496c888e27f79 100644 (file)
@@ -19,7 +19,9 @@
 
     if( isset($SESSIONS) ) {
       foreach ($SESSIONS as $session) {
-        if ($session['id'] == $SESSIONS_next) { break; }
+        if ( isset($SESSIONS_next) ) {
+          if ($session['id'] == $SESSIONS_next) { break; }
+        }        
 
         $exdone = $db->query("SELECT thisdone, manydone FROM workdone WHERE mnumber=" . $mnumber . " AND session=" . $session['id'])->fetch(PDO::FETCH_NUM);