summaryrefslogtreecommitdiffstats
path: root/wp-settings.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-11-13 18:56:18 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-11-13 18:56:18 +0000
commit79dbaee37760b8cb3e835affdfea83465414c122 (patch)
tree1256ba32b8071399a698b33528ce19142f62b70a /wp-settings.php
parentd510632e9f07cec9ac3de3b5dafc56bd58c81b8a (diff)
downloadwordpress-mu-79dbaee37760b8cb3e835affdfea83465414c122.tar.gz
wordpress-mu-79dbaee37760b8cb3e835affdfea83465414c122.tar.xz
wordpress-mu-79dbaee37760b8cb3e835affdfea83465414c122.zip
Use PLUGINDIR (fixes #191)
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@805 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-settings.php')
-rw-r--r--wp-settings.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/wp-settings.php b/wp-settings.php
index d82c124..088d8fa 100644
--- a/wp-settings.php
+++ b/wp-settings.php
@@ -258,8 +258,8 @@ if ( get_option('active_plugins') ) {
$current_plugins = get_option('active_plugins');
if ( is_array($current_plugins) ) {
foreach ($current_plugins as $plugin) {
- if ('' != $plugin && file_exists(ABSPATH . 'wp-content/plugins/' . $plugin))
- include_once(ABSPATH . 'wp-content/plugins/' . $plugin);
+ if ('' != $plugin && file_exists(ABSPATH . PLUGINDIR . '/' . $plugin))
+ include_once(ABSPATH . PLUGINDIR . '/' . $plugin);
}
}
}