Index: trunk/BNC/src/combination/bnccomb.cpp
===================================================================
--- trunk/BNC/src/combination/bnccomb.cpp	(revision 10153)
+++ trunk/BNC/src/combination/bnccomb.cpp	(revision 10192)
@@ -485,13 +485,15 @@
     // Check regarding current time
     // ----------------------------
-    if ((newClk->_time >= currentTime) ||        // future time stamp
-        (currentTime - newClk->_time) > 60.0) { // very old data sets
-#ifdef BNC_DEBUG_CMB
-      emit newMessage("bncComb: very old data sets: " + acName.toLatin1() + " " + newClk->_prn.toString().c_str() +
-          QString(" %1 ").arg(newClk->_time.timestr().c_str()).toLatin1() + "vs. current time" +
-          QString(" %1 ").arg(currentTime.timestr().c_str()).toLatin1(), true);
-#endif
-      delete newClk;
-      continue;
+    if (BNC_CORE->mode() != t_bncCore::batchPostProcessing) {
+      if ((newClk->_time >= currentTime) ||        // future time stamp
+          (currentTime - newClk->_time) > 60.0) { // very old data sets
+  #ifdef BNC_DEBUG_CMB
+        emit newMessage("bncComb: very old data sets: " + acName.toLatin1() + " " + newClk->_prn.toString().c_str() +
+            QString(" %1 ").arg(newClk->_time.timestr().c_str()).toLatin1() + "vs. current time" +
+            QString(" %1 ").arg(currentTime.timestr().c_str()).toLatin1(), true);
+  #endif
+        delete newClk;
+        continue;
+      }
     }
 
