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-75d572ba1dddmaster
parent
0d1284ca23
commit
2642cfd21c
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue