The security fix which was done for Drupal 6.2 has broken this Modul. The administration of the modul is not reachable anymore, when you try to access it directly over the internal link you get an "Access Denied".
The path 'admin/settings/filebrowser' had no access rights set.
The standard value has changed in 6.2 thats why its not working anymore.
Please look at the following Fix which makes the filebrowser setting available to anyone who has the right to see the admin pages.
$items['admin/settings/filebrowser'] = array(
'title' => 'Filebrowser',
'page callback' => 'drupal_get_form',
'page arguments' => array('filebrowser_admin_settings'),
'description' => t('Expose file system directories to users'),
'access arguments' => array('access administration pages'),
'type' => MENU_NORMAL_ITEM
);
Comments
Comment #1
Susurrus commentedLooks like a reasonable patch. Not tested though. Expect a commit soon.
Comment #2
Susurrus commentedAlso, rolling changes up into patches makes things infinitely easier for me and helps me commit faster. It'd be great if you could reroll into a patch and provide them for other issues.
Comment #3
Susurrus commentedDone and done.
Comment #4
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.