Fixed parser error.
authorRoland Haeder <roland@mxchange.org>
Sat, 24 May 2014 13:36:39 +0000 (15:36 +0200)
committerRoland Haeder <roland@mxchange.org>
Sat, 24 May 2014 13:36:39 +0000 (15:36 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
inc/classes/main/file_directories/class_BaseFile.php

index e918c80b07fc391e71b52dfbecfde3a9cbd914b5..cf36937123ce3b360326337c24dbfa830ba3cd13 100644 (file)
@@ -218,7 +218,7 @@ y    * @return      void
                        } // END - if
 
                        // Read file header
-                       $this->readFileHeader()
+                       $this->readFileHeader();
 
                        // The above method does already check the header
                        $isInitialized = TRUE;
@@ -573,7 +573,7 @@ y    * @return      void
         */
        public function readFileHeader () {
                // Call block instance
-               $this->getBlockInstance()->readFileHeader()
+               $this->getBlockInstance()->readFileHeader();
        }
 
        /**
@@ -583,7 +583,7 @@ y    * @return      void
         */
        public function flushFileHeader () {
                // Call block instance
-               $this->getBlockInstance()->flushFileHeader()
+               $this->getBlockInstance()->flushFileHeader();
        }
 }