#14070 closed defect (bug) (fixed)
admin.php tries to read $plugin_page from the wrong directory
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | 3.0.1 | Priority: | normal |
Severity: | major | Version: | 3.0 |
Component: | Administration | Keywords: | |
Focuses: | Cc: |
Description
2.9 did this right. It should do
include(WP_PLUGIN_DIR . "/$plugin_page");
instead of
include(ABSPATH . PLUGINDIR . "/$plugin_page");
on line 155 of wp-admin/admin.php
It looks like a bug that got introduced by merging WPMU code.
This breaks the features introduced in 2.6 that let you keep WordPress in its own directory separate from wp-content (if WP_CONTENT_DIR != ABS_PATH . '/wp-content')
Attachments (1)
Change History (7)
Note: See
TracTickets for help on using
tickets.
Related changeset: [12712]