GX-Bug #47694 » OrdersOverviewCountAllFix.patch
| src/GXMainComponents/Controllers/HttpView/AdminAjax/OrdersOverviewAjaxController.inc.php (revision ) | ||
|---|---|---|
| 272 | 272 |
{
|
| 273 | 273 |
$db = StaticGXCoreLoader::getDatabaseQueryBuilder(); |
| 274 | 274 |
|
| 275 |
return (int)$db->get('orders')->num_rows();
|
|
| 275 |
return (int)$db->count_all('orders');
|
|
| 276 | 276 |
} |
| 277 | 277 |
|
| 278 | 278 |
|