Fixed line endings and Copyright notices

This commit is contained in:
Barry Silverman
2010-09-18 12:56:48 -04:00
parent d3223a9478
commit 6dd7e9c24e
9 changed files with 12643 additions and 12621 deletions
+18 -18
View File
@@ -1,18 +1,18 @@
<?php
$filename = $_REQUEST['name'];
file_put_contents($filename, file_get_contents("php://input"));
function file_put_contents($filename, $data) {
$f = @fopen($filename, 'w');
if ($f) {
$bytes = fwrite($f, $data);
fclose($f);
return $bytes;
}
return false;
}
?>
<?php
$filename = $_REQUEST['name'];
file_put_contents($filename, file_get_contents("php://input"));
function file_put_contents($filename, $data) {
$f = @fopen($filename, 'w');
if ($f) {
$bytes = fwrite($f, $data);
fclose($f);
return $bytes;
}
return false;
}
?>