centurion-project / Centurion

Centurion is an open-source CMS delivered as a flexible PHP5 Content Management Framework
http://www.centurion-project.org
197 stars 51 forks source link

Error on Centurion_Db_Table_Abstract::getCounts() #13

Closed aurmil closed 12 years ago

aurmil commented 12 years ago

return $select->fetchAll(); should be return $select->fetchAll()->count();

lchenay commented 12 years ago

Should be: return $select->count();

aurmil commented 12 years ago

that's true, my mistake ;)