Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1:/tmp/cvs-serv22614
Modified Files:
serendipity_genpage.inc.php
Log Message:
Without the double-quote, no external stylesheets can be loaded.
Index: serendipity_genpage.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_genpage.inc.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- serendipity_genpage.inc.php 9 Jul 2003 17:52:00 -0000 1.13
+++ serendipity_genpage.inc.php 18 Jul 2003 17:49:30 -0000 1.14
@@ -7,13 +7,13 @@
<html>
<head>
<title><?php echo htmlentities($serendipity['blogTitle']); ?></title>
- <link rel="stylesheet" type="text/css" href="<?php echo $serendipity['serendipityHTTPPath']; ?>serendipity.css.php" />
+ <!-- <link rel="stylesheet" type="text/css" href="<?php echo $serendipity['serendipityHTTPPath']; ?>serendipity.css.php" /> -->
<link rel="alternate" type="application/rss+xml" title="RSS" href="<?php echo $serendipity['baseURL']; ?>feeds/index.rss" />
<script language="Javascript" type="text/javascript" src="<?php echo $serendipity['serendipityHTTPPath']; ?>serendipity.js"></script>
<?php
if (strtolower($serendipity['extCSS'])!='none') {
?>
- <style type="text/css">@import <?php echo $serendipity['extCSS']; ?>";</style>
+ <style type="text/css">@import "<?php echo $serendipity['extCSS']; ?>";</style>
<?php
}
?>
|