Update of /cvsroot/php-blog/serendipity/templates/default
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17845/templates/default
Modified Files:
layout.php
Log Message:
Merged changes: htmlspecialchars instead of htmlentities for preserving native charsets.
Index: layout.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/templates/default/layout.php,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- layout.php 21 Mar 2004 16:35:33 -0000 1.15
+++ layout.php 7 Apr 2004 12:42:44 -0000 1.16
@@ -14,7 +14,7 @@
?>
<div id="serendipity_banner">
- <h1><a class="homelink1" href="<?php echo $serendipity['baseURL']; ?>"><?php echo htmlentities($serendipity['blogTitle']) ?></a></h1>
+ <h1><a class="homelink1" href="<?php echo $serendipity['baseURL']; ?>"><?php echo htmlspecialchars($serendipity['blogTitle']) ?></a></h1>
<?php
$sub = isset($serendipity['blogSubTitle']) ? $serendipity['blogSubTitle'] : $serendipity['blogDescription'];
if (strlen($sub)) {
|