Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1:/tmp/cvs-serv5741
Modified Files:
NEWS serendipity_functions.inc.php
Log Message:
If an entry contained an extended body, the trackbackpings were only sent
to links in the extended body, discarding any links in the standard body.
Now all links are taken into account.
Index: NEWS
===================================================================
RCS file: /cvsroot/php-blog/serendipity/NEWS,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- NEWS 16 Aug 2003 21:40:05 -0000 1.13
+++ NEWS 17 Aug 2003 20:51:04 -0000 1.14
@@ -2,6 +2,7 @@
Version 0.3 ()
------------------------------------
+ * Fixed issue where trackbackpings where only sent to links in extended entry, discarding the standard body. Now all links of the standard body are parsed as well. (garvinhicking)
* Fixed issue where two users sharing same username & password would not be able to log in correctly, causing errors on the admin pages (tomsommer)
* Fixed issue where installation would execute SQL instructions even if a table already existed, creating "ghost"-authors (tomsommer)
* Allow unsubscription of already subscribed entries (tomsommer)
Index: serendipity_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions.inc.php,v
retrieving revision 1.137
retrieving revision 1.138
diff -u -d -r1.137 -r1.138
--- serendipity_functions.inc.php 17 Aug 2003 18:06:02 -0000 1.137
+++ serendipity_functions.inc.php 17 Aug 2003 20:51:04 -0000 1.138
@@ -1549,7 +1549,7 @@
}
if($exflag) {
- serendipity_handle_references($entry['id'], $serendipity['blogTitle'], $entry['title'], $entry['extended'], $newEntry);
+ serendipity_handle_references($entry['id'], $serendipity['blogTitle'], $entry['title'], $entry['body'] . $entry['extended'], $newEntry);
}
else {
serendipity_handle_references($entry['id'], $serendipity['blogTitle'], $entry['title'], $entry['body'], $newEntry);
|