]> git.immae.eu Git - github/shaarli/Shaarli.git/commitdiff
Removed PHP_EOL 1609/head
authorGanesh Kandu <kanduganesh@gmail.com>
Tue, 27 Oct 2020 12:38:14 +0000 (18:08 +0530)
committerGitHub <noreply@github.com>
Tue, 27 Oct 2020 12:38:14 +0000 (18:08 +0530)
just replace "*/ ?>" and "<?php /*" with '' and "Trim" output whatever is EOF will trimmed out.

application/config/ConfigJson.php

index eaa4ee3f87d153815dac5da07d18d3068f4c34b5..23b22269540d46f3a03770ea50865738e31c1209 100644 (file)
@@ -19,7 +19,7 @@ class ConfigJson implements ConfigIO
         $data = file_get_contents($filepath);
         $data = str_replace(self::getPhpHeaders(), '', $data);
         $data = str_replace(self::getPhpSuffix(), '', $data);
-        $data = json_decode($data, true);
+        $data = json_decode(trim($data), true);
         if ($data === null) {
             $errorCode = json_last_error();
             $error  = sprintf(
@@ -73,7 +73,7 @@ class ConfigJson implements ConfigIO
      */
     public static function getPhpHeaders()
     {
-        return '<?php /*'. "\n";
+        return '<?php /*';
     }
 
     /**
@@ -85,6 +85,6 @@ class ConfigJson implements ConfigIO
      */
     public static function getPhpSuffix()
     {
-        return "\n" . '*/ ?>';
+        return '*/ ?>';
     }
 }