Minor: single quotes
git-svn-id: http://svg-edit.googlecode.com/svn/trunk@2655 eee81c28-f429-11dd-99c0-75d572ba1ddd
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
$svg = $_REQUEST["svg_data"];
|
||||
$svg = $_REQUEST['svg_data'];
|
||||
$svg_data = urldecode($svg);
|
||||
$file = "saved.svg";
|
||||
$fh = fopen($file, "w") or die("Can't open file");
|
||||
$file = 'saved.svg';
|
||||
$fh = fopen($file, 'w') or die("Can't open file");
|
||||
fwrite($fh, $svg_data);
|
||||
fclose($fh);
|
||||
?>
|
||||
|
||||
Reference in New Issue
Block a user