Closed (won't fix)
Project:
IMCE
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
27 Nov 2012 at 11:32 UTC
Updated:
28 Nov 2012 at 20:49 UTC
Imce adds a file browser tab to the user/* paths but doesn't report it as an admin path which causes the site to switch in and out of the overlay when going from edit to file browser and back.
Since user.module reports all its paths as admin paths:
function user_admin_paths() {
$paths = array(
'user/*/cancel' => TRUE,
'user/*/edit' => TRUE,
'user/*/edit/*' => TRUE,
);
return $paths;
}
I'd think that it would be more consisten if imce did as well:
function imce_admin_paths() {
$paths = array(
'user/*/imce' => TRUE,
);
return $paths;
}
Comments
Comment #1
ufku commentedNo editing or administration takes place at user/*/imce path. It should stay as is just like user/*/contact or any other regular tab.