Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17426
Modified Files:
serendipity_functions.inc.php
Log Message:
shame on me, i broke the threading. :-)
Index: serendipity_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions.inc.php,v
retrieving revision 1.304
retrieving revision 1.305
diff -u -d -r1.304 -r1.305
--- serendipity_functions.inc.php 23 Jun 2004 17:26:44 -0000 1.304
+++ serendipity_functions.inc.php 24 Jun 2004 10:46:53 -0000 1.305
@@ -1378,7 +1378,7 @@
$comments = serendipity_fetchComments($id);
}
- $retval = $parent ? '' : '<select id="serendipity_replyTo" name="serendipity_replyTo"><option value="0">[ ' . TOP_LEVEL . ' ]</option>';
+ $retval = $parent ? '' : '<select id="serendipity_replyTo" name="serendipity[replyTo]"><option value="0">[ ' . TOP_LEVEL . ' ]</option>';
$i = 0;
foreach ($comments as $comment) {
if ($comment['parent_id'] == $parent) {
@@ -2055,12 +2055,12 @@
if ($u['scheme'] != 'http') {
return;
}
-
+
echo '<br />• ';
printf(TRACKBACK_CHECKING, $loc);
echo '<br /> ';
flush();
-
+
if (empty($u['port'])) {
$u['port'] = 80;
}
|