LifeType 中文開發論壇

測試 => LifeType 1.1 測試 => 主題作者是: hsuzy 於 十月 14, 2006, 12:25:12 上午



主題: 1.1 搜尋結果翻頁的連結有誤 ( pager )
作者: hsuzy十月 14, 2006, 12:25:12 上午
搜尋結果如果超多一頁的話, 其他頁數的連結是錯的,
如果點其他頁數, 會導致搜尋 blogid 是 1的那個 blog

如下列
index.php?op=Search&searchTerms=xxxxxx&page=2

解決方法就是 pager 產成的連結加上 blogid

class/action/searchaction.class.php
orig:
程式碼:
$basePageUrl = $url->getIndexUrl()."?op=Search&searchTerms=".$this->_searchTerms."&page=";

改成
程式碼:
$basePageUrl = $url->getIndexUrl()."?op=Search&blogId=".$this->_blogInfo->getId()."&searchTerms=".$this->_searchTerms."&page=";

不知道是沒人發現??還是其實沒錯誤???