Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29005
Modified Files:
index.php
Log Message:
Fix: Do not use htmlspecialchars() for the blogTitle re-assignment. If a title
contained a doublequote (") it was first converted to " here and on
output in layout.php to ".
Index: index.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/index.php,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- index.php 29 Jan 2004 12:08:28 -0000 1.28
+++ index.php 3 Feb 2004 19:09:13 -0000 1.29
@@ -78,7 +78,7 @@
'WHERE id=' . serendipity_db_escape_string($id), true);
$title = $title[0];
- $serendipity['blogTitle'] = htmlspecialchars($title);
+ $serendipity['blogTitle'] = $title;
ob_start();
include_once('serendipity_genpage.inc.php');
|