Fixed issue 624 by using double quotes in XML prolog

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@1646 eee81c28-f429-11dd-99c0-75d572ba1ddd
master
Alexis Deveria 2010-07-27 15:38:23 +00:00
parent 0d1284ca23
commit 2642cfd21c
1 changed files with 1 additions and 1 deletions

View File

@ -531,7 +531,7 @@
// by default, we add the XML prolog back, systems integrating SVG-edit (wikis, CMSs)
// can just provide their own custom save handler and might not want the XML prolog
svg = "<?xml version='1.0'?>\n" + svg;
svg = '<?xml version="1.0"?>\n' + svg;
// Opens the SVG in new window, with warning about Mozilla bug #308590 when applicable