Merged [46289]: Spaces in SCRIPT_FILENAME are now replaced with underscores.

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@59875 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Hayden Smith 2008-08-06 00:14:58 +00:00
parent 3a817610bc
commit 159a50dd83

View File

@ -1,6 +1,8 @@
<?php <?php
// Name of the manifest file /**
define("MANIFEST_FILE", TEMP_FOLDER . "/manifest" . str_replace(array("/",":", "\\"),"_", $_SERVER['SCRIPT_FILENAME'])); * Define a constant for the name of the manifest file
*/
define("MANIFEST_FILE", TEMP_FOLDER . "/manifest" . str_replace(array(' ','\\','/',':'),"_", $_SERVER['SCRIPT_FILENAME']));
/** /**
* The ManifestBuilder class generates the manifest file and keeps it fresh. * The ManifestBuilder class generates the manifest file and keeps it fresh.