- @silenced unlink() in Smarty_Internal_Write_File since debuggers go haywire without it.

This commit is contained in:
rodneyrehm
2011-10-20 10:55:11 +00:00
parent 85658fcdd4
commit 38af2463df
2 changed files with 4 additions and 1 deletions

View File

@@ -1,4 +1,7 @@
===== trunk ===== ===== trunk =====
20.10.2011
- @silenced unlink() in Smarty_Internal_Write_File since debuggers go haywire without it.
19.10.2011 19.10.2011
- revert PHP4 constructor message - revert PHP4 constructor message
- fixed PHP4 constructor message - fixed PHP4 constructor message

View File

@@ -46,7 +46,7 @@ class Smarty_Internal_Write_File {
} }
// remove original file // remove original file
unlink($_filepath); @unlink($_filepath);
// rename tmp file // rename tmp file
$success = rename($_tmp_file, $_filepath); $success = rename($_tmp_file, $_filepath);