In the brilliant_gallery.module file there is this:

function brilliant_gallery_perms() {
  header("HTTP/1.1 301 Moved Permanently");
  header("Location: /?q=admin/user/permissions#module-brilliant_gallery");
  exit();
}

But that doesn't work. The path needs a base_path() in it. It should be:

function brilliant_gallery_perms() {
  header("HTTP/1.1 301 Moved Permanently");
  header("Location: ".base_path()."?q=admin/user/permissions#module-brilliant_gallery");
  exit();
}

Comments

drpchris’s picture

Status: Active » Needs review

Well, not going to create a patch for this one line change...

Tremmmm’s picture

I have the same problem, and you are **** !!
It is your mistake, you must correct it!