歡迎光臨, 訪客. 請先 登入註冊一個帳號.
十一月 23, 2024, 02:58:25 上午
19595 文章 在 3865 主題 由 4579 會員
最新註冊會員: aa123aa1
  列出文章
頁: [1]
1  測試 / LifeType 1.1 測試 / class/dao/globalarticlecategories.class.php maprow bug 會造成 mangledName 無法對應 於: 十月 17, 2006, 04:33:55 下午
改成如下所示,否則假設手動更改短分類名的話,會造成他每次還是要經過處理後才另外回傳。
setMangledName() 這個 method 就沒意義了
程式碼:
/**
* @private
*/
function mapRow( $row )
{
$category = new GlobalArticleCategory( $row["name"],
                              $row["description"],
      unserialize($row["properties"]),
      $row["id"] );
$category->setNumArticles( $row["num_articles"] );
$category->setNumActiveArticles( $row["num_active_articles"] );
$category->setMangledName($row["mangled_name"]);
return( $category );
}
2  測試 / LifeType 1.1 測試 / svn 4124 板 pager bug 於: 十月 12, 2006, 07:40:49 下午
Index: class/template/smarty/plugins/function.pager.php
===================================================================
--- class/template/smarty/plugins/function.pager.php    (revision 4124)

程式碼:
+++ class/template/smarty/plugins/function.pager.php    (working copy)
@@ -190,7 +190,7 @@
      }
      elseif( $style == "nextonly" ) {
        if (!$pager->isLastPage() && !$pager->isEmpty()) {
-          $page_string .= "<a class=\"pagerLinkNextPage\" href=\"".$pager->getPrevPageLink()."\">$nextText</a>&nbsp;";
+          $page_string .= "<a class=\"pagerLinkNextPage\" href=\"".$pager->getNextPageLink()."\">$nextText</a>&nbsp;";
        }       
      }
      else {
下一頁打成上一頁
3  測試 / LifeType 1.1 測試 / Re: email 註冊認證問題 於: 六月 09, 2006, 09:34:31 上午
sorry..找到了,昨天一直找不到選項在哪,以為忘了加
4  測試 / LifeType 1.1 測試 / email 註冊認證問題 於: 六月 07, 2006, 06:18:27 下午
summary 裡抓的是 'need_email_confirm_registration' 這個值
可是 admin 管理介面的是 check_email_address_validity
照成不會送認證信, blog/user 預設都是被關閉的
頁: [1]