Re:Re:tempnam() leaves files in /tmp Posted by Larry Lewis 06 Sep 2003 23:51 GMT-0000 posts: 7 The fix change; $tempdir = dirname.... to $tempfile = tempnam( false, '' ); $tempdir = dirname( $tempfile ); unlink( $tempfile ); I have update the cvs .. will get the bug fixed too. Larry