Bug #14611 » 0000889-class.t3lib_diff.php.diff
class.t3lib_diff.patched.php Tue Mar 15 17:18:52 2005 | ||
---|---|---|
* @access private
|
||
*/
|
||
function getDiff($str1,$str2) {
|
||
if (TYPO3_OS!='WIN') {
|
||
// Create file 1 and write string
|
||
$file1 = t3lib_div::tempnam('diff1_');
|
||
t3lib_div::writeFile($file1,$str1);
|
||
... | ... | |
unlink($file2);
|
||
|
||
return $res;
|
||
}
|
||
}
|
||
|
||
/**
|