Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23051
Modified Files:
NEWS serendipity_functions.inc.php
Log Message:
Changed 'View extended entry' to 'Continue reading "[title]"', looks more... better :)
Index: serendipity_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions.inc.php,v
retrieving revision 1.340
retrieving revision 1.341
diff -u -d -r1.340 -r1.341
--- serendipity_functions.inc.php 16 Jul 2004 22:55:39 -0000 1.340
+++ serendipity_functions.inc.php 16 Jul 2004 23:06:08 -0000 1.341
@@ -1186,7 +1186,7 @@
}
if (isset($entry['exflag']) && $entry['exflag'] && !$extended) {
- $html_extended = '<br /><a href="' . $entryLink . '#extended">' . VIEW_EXTENDED_ENTRY . '</a><br />';
+ $html_extended = '<br /><a href="' . $entryLink . '#extended">' . sprintf(VIEW_EXTENDED_ENTRY, htmlspecialchars($entry['title'])) . '</a><br /><br />';
}
?>
Index: NEWS
===================================================================
RCS file: /cvsroot/php-blog/serendipity/NEWS,v
retrieving revision 1.176
retrieving revision 1.177
diff -u -d -r1.176 -r1.177
--- NEWS 16 Jul 2004 22:50:57 -0000 1.176
+++ NEWS 16 Jul 2004 23:06:08 -0000 1.177
@@ -3,6 +3,9 @@
Version 0.7 ()
------------------------------------------------------------------------
+ * Changed 'View extended entry' to 'Continue reading "[title]"'
+ (tomsommer)
+
* Make the non-WYSIWYG link-insertion and text-formatters work in
the extended entry textarea (tomsommer)
|