You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Zend_Paginator has a serious error when using group by in query. He loses himself by counting the lines.
Simples solution: reset count after cloning query.
// Zend/Paginator/Adapter/DbSelect.php:207
$rowCount = clone $this->_select;
$rowCount->__toString(); // Workaround for ZF-3719 and related
$rowCount->reset(Zend_Db_Select::LIMIT_COUNT); // <--- this
Hi guys,
Zend_Paginator has a serious error when using group by in query. He loses himself by counting the lines.
Simples solution: reset count after cloning query.