有喔
把class/summary/dao/summarystats.class.php裡的function getRecentArticles
裡面的
while( ($row = $result->FetchRow()) && ($i < $maxPosts) ) {
if (!in_array($row["blog_id"], $blogs))
{
$blogs[] = $row["blog_id"];
array_push( $posts, $this->articles->_fillArticleInformation($row) );
$i++;
}
}
改成
while( ($row = $result->FetchRow()) && ($i < $maxPosts) ) {
// if (!in_array($row["blog_id"], $blogs))
// {
// $blogs[] = $row["blog_id"];
array_push( $posts, $this->articles->_fillArticleInformation($row) );
$i++;
// }
}
應該是這樣啦:P