aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/plugins.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-12-30 00:05:02 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-12-30 00:05:02 +0000
commit1b3512f61edbde3c3d071df064d58efd49911b2d (patch)
tree859e01a57a9536426b262d68db55c392a177cf80 /engine/lib/plugins.php
parent947eda7867df1f4846f18fc0326ff0ed20626c34 (diff)
downloadelgg-1b3512f61edbde3c3d071df064d58efd49911b2d.tar.gz
elgg-1b3512f61edbde3c3d071df064d58efd49911b2d.tar.bz2
fixed a few issues with the admin backend - need to look into better ways to structure admin sub views
git-svn-id: http://code.elgg.org/elgg/trunk@7764 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/plugins.php')
-rw-r--r--engine/lib/plugins.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/plugins.php b/engine/lib/plugins.php
index dded13ef4..29f55926c 100644
--- a/engine/lib/plugins.php
+++ b/engine/lib/plugins.php
@@ -279,7 +279,7 @@ function get_plugin_name($mainfilename = false) {
* @return array of values
*/
function load_plugin_manifest($plugin) {
- $xml_file = get_config('pluginspath') . "$plugin/manifest.xml";
+ $xml_file = elgg_get_plugin_path() . "$plugin/manifest.xml";
try {
$manifest = new ElggPluginManifest($xml_file, $plugin);