Subject: | Typo in find_tempdir() |
Hi Lincoln,
Unless I'm mistaken, there appears to be a missing $ in the loop which clears out entries in $TMPDIRECTORY that are not directories and are not writeable. This occurs at line 3777 in v3.10:
do {$TMPDIRECTORY = $_; last} if -d $_ && -w _;
The last _ looks like it should be $_.
William