diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-05-28 12:05:35 +0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-05-28 12:10:29 +0800 |
commit | 993eecfee61e502660f490bec5b394640b917bd1 (patch) | |
tree | 4914e3fd23be591e3f1431a9a902d431b3b2cf2e | |
parent | f64824b35c1c6e42ffd3106a7ce2a3c430f1e589 (diff) |
Rename index.local.php to local.php so that tab completion on i<tab> works.
Makes running tests easier.
Signed-off-by: Bharat Mediratta <bharat@menalto.com>
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | index.php | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -2,5 +2,5 @@ var # Ignore the index.local.php -index.local.php +local.php @@ -59,8 +59,8 @@ if (PHP_SAPI == 'cli') { } define('TMPPATH', VARPATH . '/tmp'); -if (file_exists("index.local.php")) { - include("index.local.php"); +if (file_exists("local.php")) { + include("local.php"); } // Initialize. |