Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1:/tmp/cvs-serv18118
Modified Files:
index.php
Log Message:
When viewing a single entry, page <title> becomes entry's title.
Index: index.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/index.php,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- index.php 25 May 2003 17:28:57 -0000 1.10
+++ index.php 25 May 2003 19:54:57 -0000 1.11
@@ -46,7 +46,7 @@
'WHERE id=' . serendipity_db_escape_string($id), true);
$title = $title[0];
- $serendipity['blogSubTitle'] = htmlspecialchars($title);
+ $serendipity['blogTitle'] = htmlspecialchars($title);
ob_start();
include_once("serendipity_genpage.inc.php");
|