Closed (cannot reproduce)
Project:
Drupal core
Version:
8.0.x-dev
Component:
forum.module
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
24 Sep 2009 at 07:53 UTC
Updated:
29 Jul 2014 at 18:28 UTC
One of the menu router items that forum_menu() registers is not used anymore. Moreover, it returns a WSOD when trying to access it:
$items['admin/structure/forum/edit/%forum_term'] = array(
'page callback' => 'forum_form_main',
'access arguments' => array('administer forums'),
'type' => MENU_CALLBACK,
'file' => 'forum.admin.inc',
);
is a left-over for what is now
$items['admin/structure/forum/edit/forum/%forum_term'] = array(
'title' => 'Edit forum',
'page callback' => 'forum_form_main',
'page arguments' => array('forum', 5),
'access arguments' => array('administer forums'),
'type' => MENU_CALLBACK,
'file' => 'forum.admin.inc',
);
A clean-up for D7 head is attached.
| Comment | File | Size | Author |
|---|---|---|---|
| forum_menu_wsod.patch | 644 bytes | TUc |
Comments
Comment #1
TUc commentedThis is the error message
Comment #2
TUc commentedComment #4
larowlanComment #5
jn2 commentedNone of this code exists in current D7 or D8. Must have been fixed/changed since October 2009. Not sure I chose the right status, but it should be closed in some form.