Fix some small bugs with Dashboard navigation links

This commit is contained in:
Duncan Sommerville 2015-08-26 17:02:01 -04:00
parent 7d8c6dc90d
commit ef892bb565
2 changed files with 10 additions and 10 deletions

View file

@ -18,9 +18,9 @@ $pages = array(
array(
'label' => "<i class='icon-calendar icon-white'></i>"._('Calendar'),
'module' => 'default',
'controller' => 'Schedule',
'controller' => 'schedule',
'action' => 'index',
'resource' => 'schedule'
'resource' => 'schedule'
),
array(
'label' => "<i class='icon-wrench icon-white'></i>"._('Widgets'),
@ -48,13 +48,13 @@ $pages = array(
'resource' => 'preference',
'action' => 'index',
'module' => 'default',
'controller' => 'Preference',
'controller' => 'preference',
'title' => 'Settings',
'pages' => array(
array(
'label' => _('General'),
'module' => 'default',
'controller' => 'Preference'
'controller' => 'preference'
),
array(
'label' => _('My Profile'),
@ -72,7 +72,7 @@ $pages = array(
array(
'label' => _('Streams'),
'module' => 'default',
'controller' => 'Preference',
'controller' => 'preference',
'action' => 'stream-setting'
)
)