tempnam() leaves files in /tmp
I noticed every page access to my Tiki would leave an empty file in /tmp. I tracked this down to line 107 in tiki-setup.php, in TikiSetup::tempdir();
if (!$tempdir) {
$tempdir = dirnamefalse, ;
}
The file generated by tempnam() is obviously not removed. In my case, I simply "solved" this by always returning a static path for /tmp, but I'm guessing a "real" solution would involve cleaning this up (or use the /tmp configuration parameter ?).