Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15813
Modified Files:
serendipity_rss_exchange.inc.php
Log Message:
at least insert empty string when importing
Index: serendipity_rss_exchange.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_rss_exchange.inc.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- serendipity_rss_exchange.inc.php 28 Sep 2004 10:13:25 -0000 1.9
+++ serendipity_rss_exchange.inc.php 6 Oct 2004 13:01:42 -0000 1.10
@@ -55,6 +55,10 @@
$entry['categories'][] = $serendipity['POST']['category'];
}
+ if (!isset($entry['extended'])) {
+ $entry['extended'] = '';
+ }
+
$entry['allow_comments'] = true;
return true;
|