Loading...
 
Skip to main content

Architecture / Installation


Re:Re:tempnam() leaves files in /tmp

posts: 7 Australia

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

There are no comments at this time.