aboutsummaryrefslogtreecommitdiff
path: root/mod/file/start.php
diff options
context:
space:
mode:
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-24 00:50:54 +0000
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-24 00:50:54 +0000
commit9c1e6d6463937bdee2d1de9735463a69f8af305d (patch)
tree8ae66e2c9533ebf21fcf6c1b96be58b140681b7b /mod/file/start.php
parent9f8dfe11118813e0f4c2808abb012171db61ec52 (diff)
downloadelgg-9c1e6d6463937bdee2d1de9735463a69f8af305d.tar.gz
elgg-9c1e6d6463937bdee2d1de9735463a69f8af305d.tar.bz2
Fixes #2655: Converted register_action to elgg_register_action throughout core
git-svn-id: http://code.elgg.org/elgg/trunk@7432 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/file/start.php')
-rw-r--r--mod/file/start.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/mod/file/start.php b/mod/file/start.php
index 10fbff27e..9042dd6c3 100644
--- a/mod/file/start.php
+++ b/mod/file/start.php
@@ -309,11 +309,11 @@
elgg_register_event_handler('pagesetup','system','file_submenus');
// Register actions
- register_action("file/upload", false, $CONFIG->pluginspath . "file/actions/upload.php");
- register_action("file/save", false, $CONFIG->pluginspath . "file/actions/save.php");
- register_action("file/delete", false, $CONFIG->pluginspath. "file/actions/delete.php");
+ elgg_register_action("file/upload", $CONFIG->pluginspath . "file/actions/upload.php");
+ elgg_register_action("file/save", $CONFIG->pluginspath . "file/actions/save.php");
+ elgg_register_action("file/delete", $CONFIG->pluginspath. "file/actions/delete.php");
// temporary - see #2010
- register_action("file/download", false, $CONFIG->pluginspath. "file/actions/download.php");
+ elgg_register_action("file/download", $CONFIG->pluginspath. "file/actions/download.php");
?>