summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-05-31 06:34:03 +0800
committerBharat Mediratta <bharat@menalto.com>2009-05-31 14:28:11 +0800
commit2e9b8277d50fc951d1acb1dd22297ff3d6016fc1 (patch)
treee763c3d20806fa220bf882098e20cf9c468ddac6 /index.php
parentf737963286fe4673dab17fd40d3c37cd257acf4b (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.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");