Skip to content

Commit

Permalink
Fix permissions required for theme settings
Browse files Browse the repository at this point in the history
  • Loading branch information
dshoreman committed Dec 31, 2015
1 parent 23e03aa commit 66413ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/cms/ServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ protected function registerBackendSettings()
'category' => SettingsManager::CATEGORY_CMS,
'icon' => 'icon-picture-o',
'url' => Backend::URL('cms/themes'),
'permissions' => ['system.manage_themes'],
'permissions' => ['cms.manage_themes'],
'order' => 200
],
'maintenance_settings' => [
Expand All @@ -233,7 +233,7 @@ protected function registerBackendSettings()
'category' => SettingsManager::CATEGORY_CMS,
'icon' => 'icon-plug',
'class' => 'Cms\Models\MaintenanceSettings',
'permissions' => ['system.manage_themes'],
'permissions' => ['cms.manage_themes'],
'order' => 300
],
]);
Expand Down

0 comments on commit 66413ea

Please sign in to comment.