diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-03 12:10:45 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-02-03 12:10:45 +0000 |
commit | 4ff61fa6a8c012053659b1723b7dea9d38cd654e (patch) | |
tree | 4931ad21da79286d452c4e3ccbeb542875f9d53e /engine/classes | |
parent | 755947e111d89d6babcd0f070d91c2245e22a809 (diff) | |
download | elgg-4ff61fa6a8c012053659b1723b7dea9d38cd654e.tar.gz elgg-4ff61fa6a8c012053659b1723b7dea9d38cd654e.tar.bz2 |
changed elgg_get_plugin_path() to elgg_get_plugins_path()
git-svn-id: http://code.elgg.org/elgg/trunk@8001 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/classes')
-rw-r--r-- | engine/classes/ElggPlugin.php | 2 | ||||
-rw-r--r-- | engine/classes/ElggPluginPackage.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engine/classes/ElggPlugin.php b/engine/classes/ElggPlugin.php index b6cb792fb..5782ac4dd 100644 --- a/engine/classes/ElggPlugin.php +++ b/engine/classes/ElggPlugin.php @@ -50,7 +50,7 @@ class ElggPlugin extends ElggObject { parent::__construct($plugin); $this->path = get_config('plugins_path') . $this->getID(); } else { - $plugin_path = elgg_get_plugin_path(); + $plugin_path = elgg_get_plugins_path(); // not a full path, so assume an id // use the default path diff --git a/engine/classes/ElggPluginPackage.php b/engine/classes/ElggPluginPackage.php index 74c8bd020..d7392132c 100644 --- a/engine/classes/ElggPluginPackage.php +++ b/engine/classes/ElggPluginPackage.php @@ -93,7 +93,7 @@ class ElggPluginPackage { * @throws PluginException */ public function __construct($plugin, $validate = true) { - $plugin_path = elgg_get_plugin_path(); + $plugin_path = elgg_get_plugins_path(); // @todo wanted to avoid another is_dir() call here. // should do some profiling to see how much it affects if (strpos($plugin, $plugin_path) === 0 || is_dir($plugin)) { |