CC-4042: Media Library -> Non-admin user cannot see "File import in progress"

- fixed. See the comment for more detail.
This commit is contained in:
James 2012-06-29 10:55:19 -04:00
parent 93bdcf0b26
commit a8792a7b97
1 changed files with 2 additions and 1 deletions

View File

@ -35,6 +35,7 @@ $ccAcl->allow('G', 'index')
->allow('G', 'schedule')
->allow('G', 'dashboard')
->allow('G', 'audiopreview')
->allow('H', 'preference', 'is-import-in-progress')
->allow('H', 'usersettings')
->allow('H', 'plupload')
->allow('H', 'library')
@ -42,7 +43,7 @@ $ccAcl->allow('G', 'index')
->allow('A', 'playouthistory')
->allow('A', 'user')
->allow('A', 'systemstatus')
->allow('A', 'preference');
->allow('A', 'preference', 'admin');
$aclPlugin = new Zend_Controller_Plugin_Acl($ccAcl);