From 6a126fe7810e5dcc148fbff8d4b772ccf3742512 Mon Sep 17 00:00:00 2001 From: wangchunsheng Date: Mon, 28 Dec 2009 02:27:04 +0000 Subject: [PATCH] * fix the error of projects counts. --- module/index/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/index/control.php b/module/index/control.php index 92c1896821..cd45689d4c 100644 --- a/module/index/control.php +++ b/module/index/control.php @@ -51,7 +51,7 @@ class index extends control $this->view->projectGroups = $projectGroups; $this->view->products = $products; $this->view->burns = $burns; - $this->view->counts = count($project); + $this->view->counts = count($projects); $this->display(); }