# $Id$
+Version 1.0-beta2 ()
+------------------------------------------------------------------------
+
+ * Patch bundled PEAR.php so that it does not try to declare a PEAR
+ class a second time. (garvinhicking)
+
+ * RSS feeds use the permalink URL to link to extended entry, not the
+ RSS guid element. (garvinhicking)
+
+ * Remove duplicate path file name in serendipity_currentURL function,
+ preventing the right "is frontpage?" detection routine from working.
+ (garvinhicking)
+
+ * Use mysql_real_escape_string when available (garvinhicking)
+
+ * Atom feeds now use proper appliaction-mime type header, thanks to
+ Boris
+
+ * MoveableType importer no longer chokes on "FM/EM" timestamps
+ (garvinhicking)
+
+ * Fix undefined function call to "is_defined".
+
+ * Added translation helper tool plugin_lang.php to detect untranslated
+ plugin constants (garvinhicking)
+
+ * Updated french translation by Sebastian Mordziol
+
+ * Updated icelandic translation by Örn Arnarson
+
+ * Updated chinese plugin translation, by Demin Yin
+
Version 1.0-beta1 (January 23rd, 2006)
------------------------------------------------------------------------
$entry['body'] .= ' ' . $entry['extended'];
$ext = '';
} elseif ($entry['exflag']) {
- $ext = '<br /><a href="' . $entry['feed_guid'] . '#extended">' . sprintf(VIEW_EXTENDED_ENTRY, htmlspecialchars($entry['title'])) . '</a>';
+ $ext = '<br /><a href="' . $entry['feed_entryLink'] . '#extended">' . sprintf(VIEW_EXTENDED_ENTRY, htmlspecialchars($entry['title'])) . '</a>';
} else {
$ext = '';
}
break;
case 'atom1.0':
+ // For people wanting extra RFC compliance
+ // header('Content-Type: application/atom+xml; charset=utf8');
$namespace_hook = 'frontend_display:atom-1.0:namespace';
break;
}
include_once(S9Y_INCLUDE_PATH . 'include/compat.inc.php');
// The version string
-$serendipity['version'] = '1.0-beta1';
+$serendipity['version'] = '1.0-beta2';
// Name of folder for the default theme
$serendipity['defaultTemplate'] = 'default';