Skip to content

Commit

Permalink
fixed encoding of html entities in tex expressions - SC#7
Browse files Browse the repository at this point in the history
  • Loading branch information
skodak committed Nov 18, 2004
1 parent d4b57df commit c7b29ed
Showing 1 changed file with 17 additions and 8 deletions.
25 changes: 17 additions & 8 deletions filter/tex/displaytex.php
@@ -1,9 +1,18 @@
<html>
<head><title>TeX Source</title></head>
<body bgcolor="#FFFFFF">
<?PHP
$texexp = urldecode($_SERVER['QUERY_STRING']);
echo "$texexp\n";
<?php // $Id$
// This script displays tex source code.

$texexp = urldecode($_SERVER['QUERY_STRING']);
// entities are usually encoded twice, first in HTML editor then in tex/filter.php
$texexp = html_entity_decode(html_entity_decode($texexp));
// encode all entities
$texexp = htmlentities($texexp);
?>
</body>
</html>
<html>
<head>
<title>TeX Source</title>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
</head>
<body bgcolor="#FFFFFF">
<?php echo $texexp; ?>
</body>
</html>

0 comments on commit c7b29ed

Please sign in to comment.