summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-05-30 15:34:03 -0700
committerBharat Mediratta <bharat@menalto.com>2009-05-30 15:34:03 -0700
commit3b3531cbb834c192339292df8ab3e9220a48d924 (patch)
tree256abda27c05bddabf27207e97d845de92fb0ab0
parent1559539993100b354431b83a01310cb70a9298b4 (diff)
Add a / to the end of TMPPATH to match other paths.
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index b92f7353..a70053a8 100644
--- a/index.php
+++ b/index.php
@@ -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");