diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-05-31 06:34:03 +0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-05-31 14:28:11 +0800 |
commit | 2e9b8277d50fc951d1acb1dd22297ff3d6016fc1 (patch) | |
tree | e763c3d20806fa220bf882098e20cf9c468ddac6 /index.php | |
parent | f737963286fe4673dab17fd40d3c37cd257acf4b (diff) |
Add a / to the end of TMPPATH to match other paths.
Signed-off-by: Bharat Mediratta <bharat@menalto.com>
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ if (PHP_SAPI == 'cli') { define('TEST_MODE', 0); define('VARPATH', strtr(realpath('var') . '/', DIRECTORY_SEPARATOR, '/')); } -define('TMPPATH', VARPATH . '/tmp'); +define('TMPPATH', VARPATH . '/tmp/'); if (file_exists("local.php")) { include("local.php"); |