From 9aa15284253909618c730fd33958e2e1a062ece9 Mon Sep 17 00:00:00 2001 From: Marco Dickert Date: Thu, 6 Jul 2017 16:39:16 +0200 Subject: [PATCH] fixed compiler error --- compiler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler.php b/compiler.php index 23c57c6..9d02871 100755 --- a/compiler.php +++ b/compiler.php @@ -55,4 +55,4 @@ file_put_contents( $IFM_BUILD_STANDALONE, array( */ file_put_contents( $IFM_BUILD_LIB_PHP, $main ); file_put_contents( $IFM_BUILD_LIB_PHP, $phpincludes, FILE_APPEND ); -file_put_contents( $IFM_BUILD_LIB_JS, $IFM_SRC_JS ); +file_put_contents( $IFM_BUILD_LIB_JS, file_get_contents( $IFM_SRC_JS ) );