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 /mod/categories | |
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 'mod/categories')
-rw-r--r-- | mod/categories/start.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/categories/start.php b/mod/categories/start.php index a904f19ae..aa460677a 100644 --- a/mod/categories/start.php +++ b/mod/categories/start.php @@ -14,7 +14,7 @@ function categories_init() { elgg_extend_view('css/screen', 'categories/css'); - $action_base = elgg_get_plugin_path() . 'categories/actions'; + $action_base = elgg_get_plugins_path() . 'categories/actions'; elgg_register_action('settings/categories/save', "$action_base/save.php", 'admin'); register_page_handler('categories', 'categories_page_handler'); |