Add charset to HTML5 doc (and make more XHTML friendly)
git-svn-id: http://svg-edit.googlecode.com/svn/trunk@2609 eee81c28-f429-11dd-99c0-75d572ba1dddmaster
parent
e5f3e81a07
commit
2400493cab
|
@ -1,4 +1,4 @@
|
||||||
<!doctype html>
|
<!DOCTYPE html>
|
||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
* fileopen.php
|
* fileopen.php
|
||||||
|
@ -26,6 +26,11 @@
|
||||||
$prefix = 'data:' . $info['mime'] . ';base64,';
|
$prefix = 'data:' . $info['mime'] . ';base64,';
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
<script>
|
<script>
|
||||||
window.top.window.svgEditor.processFile("<?php echo $prefix . base64_encode($output); ?>", "<?php echo htmlentities($type); ?>");
|
window.top.window.svgEditor.processFile("<?php echo $prefix . base64_encode($output); ?>", "<?php echo htmlentities($type); ?>");
|
||||||
</script>
|
</script>
|
||||||
|
</head><body></body>
|
||||||
|
</html>
|
||||||
|
|
Loading…
Reference in New Issue