Revision: 1452
Author: magike.net
Date: Sun Jun 20 21:40:01 2010
Log: fix issue 465
http://code.google.com/p/typecho/source/detail?r=1452

Modified:
  /trunk/usr/themes/default/header.php
  /trunk/var/Widget/Comments/Archive.php

=======================================
--- /trunk/usr/themes/default/header.php        Wed Jun  9 22:32:23 2010
+++ /trunk/usr/themes/default/header.php        Sun Jun 20 21:40:01 2010
@@ -13,7 +13,7 @@

  <body>
  <div id="header" class="container_16 clearfix">
-       <form id="search" method="post">
+       <form id="search" method="post" action="/">
                <div><input type="text" name="s" class="text" size="20" /> 
<input  
type="submit" class="submit" value="<?php _e('搜索'); ?>" /></div>
      </form>
        <div id="logo">
=======================================
--- /trunk/var/Widget/Comments/Archive.php      Wed Jun  9 22:08:08 2010
+++ /trunk/var/Widget/Comments/Archive.php      Sun Jun 20 21:40:01 2010
@@ -354,7 +354,7 @@
              $this->sequence ++;

              //在子评论之前输出
-            $singleCommentOptions->before;
+            echo $singleCommentOptions->before;

              foreach ($children as $child) {
                  $this->row = $child;
@@ -363,7 +363,7 @@
              }

              //在子评论之后输出
-            $singleCommentOptions->after;
+            echo $singleCommentOptions->after;

              $this->sequence --;
          }
_______________________________________________
announce mailing list
[email protected]
http://lists.typecho.org/mailman/listinfo/announce

回复