X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/4013663192eb94fd4519e22d0e6dc1fb61b15957..6c49ea194c030a04ce8b303aae2a51dce01c7382:/install.php?ds=sidebyside diff --git a/install.php b/install.php index 81a00cc..3bfbea8 100644 --- a/install.php +++ b/install.php @@ -52,6 +52,9 @@ jirafeau_export_cfg ($cfg) fwrite ($handle, jirafeau_quoted ($item)); else if (is_int ($item)) fwrite ($handle, $item); + else if (is_array ($item)) + fwrite ($handle, str_replace(array("\n", "\r"), "", + var_export ($item, true))); else fwrite ($handle, 'null'); fwrite ($handle, ';'.NL);