mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-24 02:12:17 +00:00
Fixed permissions: now all the controllers that extend FHC_Controller and need the write permission, have added the read permission
It it a workaroud for GET/POST checks
This commit is contained in:
@@ -15,9 +15,9 @@ class Manager extends FHC_Controller
|
||||
parent::__construct(
|
||||
array(
|
||||
'index' => 'system/extensions:r',
|
||||
'toggleExtension' => 'system/extensions:w',
|
||||
'delExtension' => 'system/extensions:w',
|
||||
'uploadExtension' => 'system/extensions:w'
|
||||
'toggleExtension' => 'system/extensions:rw',
|
||||
'delExtension' => 'system/extensions:rw',
|
||||
'uploadExtension' => 'system/extensions:rw'
|
||||
)
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user