diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-03 23:20:37 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-03 23:20:37 +0000 |
commit | 77c4fd10bc965499d6ad58c49ea17dab9414bb44 (patch) | |
tree | 91ba96c797c07fd690b74bcdb7e752b803b352ce /engine/lib/deprecated-1.8.php | |
parent | 3c8c0584287e5e569879eebe5033610b6ad2fe44 (diff) | |
download | elgg-77c4fd10bc965499d6ad58c49ea17dab9414bb44.tar.gz elgg-77c4fd10bc965499d6ad58c49ea17dab9414bb44.tar.bz2 |
Updated elgg_get_plugin_path in load_plugin_manifest to elgg_get_plugins_path
git-svn-id: http://code.elgg.org/elgg/trunk@8008 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/deprecated-1.8.php')
-rw-r--r-- | engine/lib/deprecated-1.8.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/deprecated-1.8.php b/engine/lib/deprecated-1.8.php index 10b7c0a81..dbe53c115 100644 --- a/engine/lib/deprecated-1.8.php +++ b/engine/lib/deprecated-1.8.php @@ -1530,7 +1530,7 @@ function get_plugin_name($mainfilename = false) { function load_plugin_manifest($plugin) { elgg_deprecated_notice('load_plugin_manifest() is deprecated by ElggPlugin->getManifest()', 1.8); - $xml_file = elgg_get_plugin_path() . "$plugin/manifest.xml"; + $xml_file = elgg_get_plugins_path() . "$plugin/manifest.xml"; try { $manifest = new ElggPluginManifest($xml_file, $plugin); |