Commit 2a999174c9df9d75cf5e0daaf73c3ad9960346a7
1 parent
37109e66
customers search empty notice
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/app/backend/controllers/CustomersController.php
... | ... | @@ -33,7 +33,7 @@ class CustomersController extends \Phalcon\Mvc\Controller |
33 | 33 | $total = 1; |
34 | 34 | } |
35 | 35 | else { |
36 | - $this->flash->notice("Заполните поле поиска"); | |
36 | + $this->flash->notice("Параметры поиска не указаны"); | |
37 | 37 | $data = $this->models->getCustomers()->getAllData($page); |
38 | 38 | $total = $this->models->getCustomers()->countData(); |
39 | 39 | } | ... | ... |