Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16748
Modified Files:
NEWS serendipity_admin.php serendipity_functions.inc.php
Log Message:
Prepare bugfix 0.5-pl1 release
Index: NEWS
===================================================================
RCS file: /cvsroot/php-blog/serendipity/NEWS,v
retrieving revision 1.65
retrieving revision 1.66
diff -u -d -r1.65 -r1.66
--- NEWS 10 Feb 2004 15:48:45 -0000 1.65
+++ NEWS 13 Feb 2004 16:50:39 -0000 1.66
@@ -7,9 +7,17 @@
* Created event plugin API to hook on certain serendipity actions (garvinhicking)
* Redesigned image manager (tomsommer)
* Added image syncronization with database (tomsommer)
- * Fix leaking draft entries by directly entering URL or using quicksearch (garvinhicking)
* Now able to use CommentAPI to post entries to an RSS/Atom feed, like from RSS Bandit (garvinhicking)
+Version 0.5-pl1 ()
+------------------------------------
+ * Fixed XHTML-invalid anchor name (garvinhicking)
+ * Fixed installation problems [file_get_contents, htacces copy&paste] for PHP < 4.3.0 (garvinhicking)
+ * Fix leaking draft entries by directly entering URL or using quicksearch (garvinhicking)
+ * Fixed output of an empty external stylesheet on admin panel (garvinhicking)
+ * Do not output comment-type ("NORMAL") on entry view (garvinhicking)
+ * Fixed RSS 0.91 feed (was not printing any entries) (garvinhicking)
+
Version 0.5 (February 6th, 2004)
------------------------------------
* Fixed bug not showing comment or entry admin-tools on apparently static pages (garvinhicking, tomsommer)
Index: serendipity_admin.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_admin.php,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- serendipity_admin.php 7 Jan 2004 17:53:44 -0000 1.26
+++ serendipity_admin.php 13 Feb 2004 16:50:39 -0000 1.27
@@ -17,7 +17,7 @@
<title><?php echo SERENDIPITY_ADMIN_SUITE; ?></title>
<link rel="stylesheet" type="text/css" href="<?php echo (isset($serendipity['serendipityHTTPPath']) ? $serendipity['serendipityHTTPPath'] : ''); ?>serendipity.css.php" />
<?php
-if (isset($serendipity['extCSS']) && strtolower($serendipity['extCSS']) != 'none') {
+if (!empty($serendipity['extCSS']) && strtolower($serendipity['extCSS']) != 'none') {
?>
<link rel="stylesheet" type="text/css" href="<?php echo $serendipity['extCSS']; ?>" />
<?php
Index: serendipity_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions.inc.php,v
retrieving revision 1.203
retrieving revision 1.204
diff -u -d -r1.203 -r1.204
--- serendipity_functions.inc.php 11 Feb 2004 12:23:12 -0000 1.203
+++ serendipity_functions.inc.php 13 Feb 2004 16:50:39 -0000 1.204
@@ -1294,7 +1294,7 @@
</content>
</entry>
<?php
- } elseif ($version == '0.92' || $version == '2.0') {
+ } elseif ($version == '0.91' || $version == '2.0') {
/*********** BEGIN RSS 0.91/2.0 FEED *************/
?>
<item>
|