Index: trunk/MagicSoft/Mars/Changelog
===================================================================
--- trunk/MagicSoft/Mars/Changelog	(revision 7208)
+++ trunk/MagicSoft/Mars/Changelog	(revision 7209)
@@ -43,4 +43,5 @@
    * mreport/MReportCamera.cc:
      - fixed a problem reading files with gkActiveLoadControlVersNum
+     - added a fix for report files before 200407070
 
 
Index: trunk/MagicSoft/Mars/NEWS
===================================================================
--- trunk/MagicSoft/Mars/NEWS	(revision 7208)
+++ trunk/MagicSoft/Mars/NEWS	(revision 7209)
@@ -40,4 +40,7 @@
      counting house (MCameraAUX) and the name of the HV settings file
      (MCameraHV).
+
+   - merrp: Also fixed some problems with wrong versions numbers stated
+     by arehucas and implemented some fixed for old versions (<200407070)
 
    - callisto: MCalibrationHiLoCam can now be printed from its context
Index: trunk/MagicSoft/Mars/mreport/MReportCamera.cc
===================================================================
--- trunk/MagicSoft/Mars/mreport/MReportCamera.cc	(revision 7208)
+++ trunk/MagicSoft/Mars/mreport/MReportCamera.cc	(revision 7209)
@@ -396,5 +396,4 @@
 Bool_t MReportCamera::InterpreteHOT(TString &str)
 {
-
     if (!CheckTag(str, "HOT "))
         return kFALSE;
@@ -619,6 +618,9 @@
         return kCONTINUE;
 
-    if (!InterpreteHOT(str))
-        return kCONTINUE;
+    if (ver >= 200407070)
+    {
+        if (!InterpreteHOT(str))
+            return kCONTINUE;
+    }
 
     if (ver > gkActiveLoadControlVersNum)
