1
0
mirror of https://github.com/EGroupware/egroupware.git synced 2025-07-06 01:20:22 +02:00

Fix historylog pagination, found by Filippos Karailanidis

This commit is contained in:
nathangray
2017-12-05 15:13:30 -07:00
parent 71a7609b34
commit ced6c63ddd

@ -279,10 +279,7 @@ class History
} }
$rows[] = Api\Db::strip_array_keys($row,'history_'); $rows[] = Api\Db::strip_array_keys($row,'history_');
} }
if ($mysql_calc_rows) $total = $GLOBALS['egw']->db->union($_query,__LINE__,__FILE__)->NumRows();
{
$total = $GLOBALS['egw']->db->query('SELECT FOUND_ROWS()')->fetchColumn();
}
return $total; return $total;
} }