Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6564
Modified Files:
Tag: branch_0_6
NEWS serendipity_functions.inc.php
Log Message:
MFH
Index: serendipity_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions.inc.php,v
retrieving revision 1.248.4.9
retrieving revision 1.248.4.10
diff -u -d -r1.248.4.9 -r1.248.4.10
--- serendipity_functions.inc.php 14 May 2004 08:29:59 -0000 1.248.4.9
+++ serendipity_functions.inc.php 18 Jun 2004 16:53:58 -0000 1.248.4.10
@@ -1928,6 +1928,11 @@
$entry['last_modified'] = time();
}
+ /* WYSIWYG-editor inserts empty '<br />' for extended body; this is reversed here */
+ if (isset($entry['extended']) && trim($entry['extended']) == '<br />') {
+ $entry['extended'] = '';
+ }
+
if (strlen($entry['extended'])) {
$exflag = 1;
}
Index: NEWS
===================================================================
RCS file: /cvsroot/php-blog/serendipity/NEWS,v
retrieving revision 1.103.4.8
retrieving revision 1.103.4.9
diff -u -d -r1.103.4.8 -r1.103.4.9
--- NEWS 14 Jun 2004 10:36:49 -0000 1.103.4.8
+++ NEWS 18 Jun 2004 16:53:58 -0000 1.103.4.9
@@ -1,15 +1,20 @@
# $Id$
-Version 0.6-pl3 (June 14th, 2004)
+Version 0.6-pl3 ()
------------------------------------------------------------------------
+ * WYSIWYG-Editor: Links were prefixed with '/' wrongly (IE only).
+ Now all entered links will be put to an absolute URL consistently.
+ Fix always inserting extended body with empty '<br />'
+ (garvinhicking)
+
* Fix bug during installation, which can cause an endless loop
of connections (tomsommer)
-
+
* Removed german blogbot pinging service, it was shut down (nohn)
-
+
* Allow pinging of blogbot.dk (tomsommer)
-
+
Version 0.6-pl2 (May 24th, 2004)
------------------------------------------------------------------------
|