diff options
author | rojaro <> | 2009-10-03 00:15:01 +0000 |
---|---|---|
committer | rojaro <> | 2009-10-03 00:15:01 +0000 |
commit | 3401d1e6c7e76c22f9cefb0c5bc092536ddfa8f7 (patch) | |
tree | d6b7d6ba20021fa9d3c228715c0e0ecb4439a949 | |
parent | 6d02d935df4b8c6525a00670d54f37a9de0a87e0 (diff) |
changed include('API_index.php') to lowercase api_index.php as most non-Windows platforms are case-sensitive about filenames.
-rw-r--r-- | buildscripts/index/build.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buildscripts/index/build.php b/buildscripts/index/build.php index 0caaafb2..c02f94ae 100644 --- a/buildscripts/index/build.php +++ b/buildscripts/index/build.php @@ -24,7 +24,7 @@ require_once ('Zend/Search/Lucene.php'); //get the indexers.
include('quickstart_index.php');
-include('API_index.php');
+include('api_index.php');
if(isset($argv[1]))
{
@@ -62,4 +62,4 @@ else echo "Usage: 'php build.php quickstart' or 'php build.php api'\n";
}
-?>
\ No newline at end of file +?>
|