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

Susurrus’s picture

Status: Reviewed & tested by the community » Needs review

Looks like a reasonable patch. Not tested though. Expect a commit soon.

Susurrus’s picture

Also, 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.

Susurrus’s picture

Status: Needs review » Fixed

Done and done.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.