summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2013-01-25 11:31:07 -0800
committerBharat Mediratta <bharat@menalto.com>2013-01-25 11:31:07 -0800
commit5868fe0b867fe1e7612f155033f0f9fd762241ee (patch)
tree94e97197ede4d834d21a1b590db00815c0a20e52
parentc71f3091d2c3d87467640c0d7a0e701c259dd519 (diff)
parentf90cd11bcf087b001d0d84a3c2f32a36863cf4fb (diff)
Merge pull request #102 from shadlaws/fix_1964
#1964 - TMPPATH is mis-defined in index.php.
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index 9ff8e3b4..5f6d231b 100644
--- a/index.php
+++ b/index.php
@@ -106,7 +106,7 @@ if (PHP_SAPI == "cli") {
define("TEST_MODE", 0);
define("VARPATH", realpath("var") . "/");
}
-define("TMPPATH", VARPATH . "/tmp/");
+define("TMPPATH", VARPATH . "tmp/");
if (file_exists("local.php")) {
include("local.php");