diff options
| author | 2014-02-19 19:54:50 +0100 | |
|---|---|---|
| committer | 2014-02-19 19:54:50 +0100 | |
| commit | 04da549e2e52980ccc72689c32793222be76279d (patch) | |
| tree | 48e391d1aee6db4797cc46bd23ffb4dce311f46b | |
| parent | e50fb4179f91ec3711b0fd602a749c447d0e141d (diff) | |
Switch TMP_PATH to DATA_PATH for the 0.7.1
See https://github.com/marienfressinaud/FreshRSS/issues/420#issuecomment-35423003
| -rw-r--r-- | constants.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/constants.php b/constants.php index 4818f1565..a140d0e74 100644 --- a/constants.php +++ b/constants.php @@ -16,4 +16,5 @@ define('FRESHRSS_PATH', dirname(__FILE__)); define('LIB_PATH', FRESHRSS_PATH . '/lib'); define('APP_PATH', FRESHRSS_PATH . '/app'); -define('TMP_PATH', sys_get_temp_dir()); +//define('TMP_PATH', sys_get_temp_dir()); // need more tests so... +define('TMP_PATH', DATA_PATH); // ... we use DATA_PATH for the 0.7.1 |
