diff --git a/site/controllers/customers_controller.php b/site/controllers/customers_controller.php index 2e48793..de38ca3 100644 --- a/site/controllers/customers_controller.php +++ b/site/controllers/customers_controller.php @@ -31,9 +31,9 @@ class CustomersController extends AppController { */ function index() { $this->current(); } - function current() { $this->jqGridView('Current Tenants'); } + function current() { $this->jqGridView('Current Tenants', 'current'); } function past() { $this->jqGridView('Past Tenants'); } - function all() { $this->jqGridView('All Customers', 'all'); } + function all() { $this->jqGridView('All Customers'); } /**************************************************************************