Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29749
Modified Files:
NEWS serendipity_functions.inc.php
Log Message:
Remove full trackback URI from full-entry page and replace it with link with an alert()
Index: serendipity_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions.inc.php,v
retrieving revision 1.357
retrieving revision 1.358
diff -u -d -r1.357 -r1.358
--- serendipity_functions.inc.php 20 Jul 2004 17:58:57 -0000 1.357
+++ serendipity_functions.inc.php 22 Jul 2004 21:03:04 -0000 1.358
@@ -1280,11 +1280,8 @@
<div class="serendipity_comments">
<br />
<a id="trackbacks"></a>
- <div class="serendipity_commentsTitle"><?php echo TRACKBACKS; ?></div>
- <em><?php echo TRACKBACK_SPECIFIC; ?>:</em><br />
- <?php echo $tbu; ?><br /><br />
-
-
+ <div class="serendipity_commentsTitle"><?php echo TRACKBACKS; ?>
+ (<a style="font-weight: normal" href="<?php echo $tbu; ?>" onClick="alert('<?php echo htmlentities(TRACKBACK_SPECIFIC_ON_CLICK) ?>'); return false;" title="<?php echo htmlentities(TRACKBACK_SPECIFIC_ON_CLICK) ?>"><?php echo TRACKBACK_SPECIFIC; ?></a>)</div>
<?php serendipity_printTrackbacks(serendipity_fetchTrackbacks($entry['id'])); ?>
</div>
<?php } ?>
Index: NEWS
===================================================================
RCS file: /cvsroot/php-blog/serendipity/NEWS,v
retrieving revision 1.182
retrieving revision 1.183
diff -u -d -r1.182 -r1.183
--- NEWS 22 Jul 2004 09:05:50 -0000 1.182
+++ NEWS 22 Jul 2004 21:03:04 -0000 1.183
@@ -3,6 +3,9 @@
Version 0.7 ()
------------------------------------------------------------------------
+ * Removed full plaintext URI from trackback section and replaced it
+ with a link to that URI (tomsommer, garvinhicking)
+
* Several german spelling mistakes corrected (thanks to Timbalu)
* Show trackbacks on the full-entry page if popups are disabled
|