Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1:/tmp/cvs-serv29857
Modified Files:
serendipity_lang_en.inc.php serendipity_functions.inc.php
Log Message:
Wrong placement of spaces
Index: serendipity_lang_en.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_lang_en.inc.php,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- serendipity_lang_en.inc.php 17 Aug 2003 18:06:03 -0000 1.33
+++ serendipity_lang_en.inc.php 19 Aug 2003 16:20:25 -0000 1.34
@@ -44,7 +44,7 @@
define('FORWARD', 'Forward');
define('ANONYMOUS', 'Anonymous');
define('LINK_TO_COMMENT', 'Link to comment #');
-define('SEND_MAIL_TO', 'Send a mail to ');
+define('SEND_MAIL_TO', 'Send a mail to');
define('NEW_TRACKBACK_TO', 'New trackback made to');
define('NEW_COMMENT_TO', 'New comment posted to');
define('RECENT', 'Recent...');
Index: serendipity_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions.inc.php,v
retrieving revision 1.140
retrieving revision 1.141
diff -u -d -r1.140 -r1.141
--- serendipity_functions.inc.php 19 Aug 2003 16:15:44 -0000 1.140
+++ serendipity_functions.inc.php 19 Aug 2003 16:20:25 -0000 1.141
@@ -760,7 +760,7 @@
<?php
/* Link to the user's email */
if ( !empty($comment['email']) ) {
- echo '<a href="mailto:' . htmlentities($comment['email']) . '" title="' . SEND_MAIL_TO . ' ' . htmlentities($name) . '(' . $comment['email'] . ')">' . htmlentities($name) . '</a>';
+ echo '<a href="mailto:' . htmlentities($comment['email']) . '" title="' . SEND_MAIL_TO . ' ' . htmlentities($name) . ' (' . $comment['email'] . ')">' . htmlentities($name) . '</a>';
} else {
echo htmlentities($name);
}
|