Dropped the security level for viewing statement and ledger entries

git-svn-id: file:///svn-source/pmgr/branches/yafr_20090716@555 97e9348a-65ac-dc4b-aefc-98561f571b83
This commit is contained in:
abijah
2009-08-14 21:01:25 +00:00
parent 43d1d2ccf5
commit d92acf12de
2 changed files with 2 additions and 2 deletions

View File

@@ -160,7 +160,7 @@ class LedgerEntriesController extends AppController {
'conditions' =>
// REVISIT <AP>: 20090811
// No security issues have been worked out yet
array('Account.level >=' => 10),
array('Account.level >=' => 5),
),
),

View File

@@ -226,7 +226,7 @@ class StatementEntriesController extends AppController {
'conditions' => array(array('StatementEntry.id' => $id),
// REVISIT <AP>: 20090811
// No security issues have been worked out yet
array('Account.level >=' => 10)
array('Account.level >=' => 5)
),
));