summaryrefslogtreecommitdiffstats
path: root/wp-admin/menu-header.php
diff options
context:
space:
mode:
Diffstat (limited to 'wp-admin/menu-header.php')
-rw-r--r--wp-admin/menu-header.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/wp-admin/menu-header.php b/wp-admin/menu-header.php
index 64aa41f..99c02a5 100644
--- a/wp-admin/menu-header.php
+++ b/wp-admin/menu-header.php
@@ -12,7 +12,7 @@ foreach ($menu as $item) {
if (( strcmp($self, $item[2]) == 0 && empty($parent_file)) || ($parent_file && ($item[2] == $parent_file))) $class = ' class="current"';
if ( !empty($submenu[$item[2]]) || current_user_can($item[1]) ) {
- if ( file_exists(ABSPATH . "wp-content/plugins/{$item[2]}") )
+ if ( file_exists(ABSPATH . PLUGINDIR . "/{$item[2]}") )
echo "\n\t<li><a href='" . get_option('siteurl') . "/wp-admin/admin.php?page={$item[2]}'$class>{$item[0]}</a></li>";
else
echo "\n\t<li><a href='" . get_option('siteurl') . "/wp-admin/{$item[2]}'$class>{$item[0]}</a></li>";
@@ -40,7 +40,7 @@ else $class = '';
$menu_hook = get_plugin_page_hook($item[2], $parent_file);
-if (file_exists(ABSPATH . "wp-content/plugins/{$item[2]}") || ! empty($menu_hook)) {
+if (file_exists(ABSPATH . PLUGINDIR . "/{$item[2]}") || ! empty($menu_hook)) {
if ( 'admin.php' == $pagenow )
echo "\n\t<li><a href='" . get_option('siteurl') . "/wp-admin/admin.php?page={$item[2]}'$class>{$item[0]}</a></li>";
else