Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1:/tmp/cvs-serv28174
Modified Files:
serendipity_genpage.inc.php
Log Message:
Strict type comparison. Should fix a bug reported on the forum.
Index: serendipity_genpage.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_genpage.inc.php,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- serendipity_genpage.inc.php 1 Oct 2003 09:29:03 -0000 1.17
+++ serendipity_genpage.inc.php 13 Oct 2003 12:00:23 -0000 1.18
@@ -4,7 +4,7 @@
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
-<html>
+<html>
<head>
<title><?php echo htmlentities($serendipity['blogTitle']); ?></title>
<meta name="Powered-By" content="Serendipity v.<?php echo $serendipity['version'] ?>">
@@ -34,7 +34,7 @@
include $serendipity['serendipityPath'] . $serendipity['templatePath'] . 'default/layout.php';
}
-if (!$serendipity['embed'] || $serendipity['embed'] == 'false' || $serendipity['embed'] === false) {
+if (!$serendipity['embed'] || $serendipity['embed'] === 'false' || $serendipity['embed'] === false) {
?>
</body>
</html>
|