diff --git a/NEWS b/NEWS index 8d270774a..e34adb286 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,8 @@ +v1.1.3 (Feb xx, 2006) + + * Broken feed editor fixed + * Compatibility layer for mb_* functions + v1.1.2 (Jan 20, 2006) * Support for feeds linked together diff --git a/config.php-dist b/config.php-dist index 95086be7e..105119920 100644 --- a/config.php-dist +++ b/config.php-dist @@ -67,6 +67,9 @@ define('ENABLE_FEED_BROWSER', true); // Enable or disable local feed browser + + define('TMP_DIRECTORY', '/tmp'); + // Directory for temporary files // vim:ft=php ?> diff --git a/functions.php b/functions.php index 6cc9b2310..536f5d66d 100644 --- a/functions.php +++ b/functions.php @@ -138,7 +138,7 @@ error_reporting (DEFAULT_ERROR_LEVEL); if ($r) { - $tmpfname = tempnam("/tmp", "ttrssicon"); + $tmpfname = tempnam(TMP_DIRECTORY, "ttrssicon"); $t = fopen($tmpfname, "w");