Fixed bug where the customer list would display 'Current Tenants', but the list would reflect all customers.

git-svn-id: file:///svn-source/pmgr/branches/invoice_receipt_20090629@267 97e9348a-65ac-dc4b-aefc-98561f571b83
This commit is contained in:
abijah
2009-07-08 21:53:30 +00:00
parent d09af4f475
commit 1932a9c316

View File

@@ -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'); }
/**************************************************************************