aboutsummaryrefslogtreecommitdiff
path: root/mod/file/start.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-10-20 11:34:41 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-10-20 11:34:41 +0000
commit7e1a0e2dcdf8bf424df6ce342767e16c5b89e0b5 (patch)
tree6aa17a10b826856a03aa23d70ec1af11242735bb /mod/file/start.php
parentbc440080560ba18d2371320334aa37619489f00f (diff)
downloadelgg-7e1a0e2dcdf8bf424df6ce342767e16c5b89e0b5.tar.gz
elgg-7e1a0e2dcdf8bf424df6ce342767e16c5b89e0b5.tar.bz2
Refs #2489 - manually merged [6981] from 1.7 branch to keep group file option consistent across Elgg versions
git-svn-id: http://code.elgg.org/elgg/trunk@7104 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/file/start.php')
-rw-r--r--mod/file/start.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/file/start.php b/mod/file/start.php
index ede4c4def..2ba97403e 100644
--- a/mod/file/start.php
+++ b/mod/file/start.php
@@ -57,7 +57,7 @@
register_plugin_hook('notify:entity:message', 'object', 'file_notify_message');
// add the group files tool option
- add_group_tool_option('files',elgg_echo('groups:enablefiles'),true);
+ add_group_tool_option('file',elgg_echo('groups:enablefiles'),true);
// Register entity type
register_entity_type('object','file');
@@ -81,7 +81,7 @@
// Group submenu option
if ($page_owner instanceof ElggGroup && get_context() == "groups") {
- if($page_owner->files_enable != "no"){
+ if($page_owner->file_enable != "no"){
add_submenu_item(sprintf(elgg_echo("file:group"),$page_owner->name), $CONFIG->wwwroot . "pg/file/" . $page_owner->username);
}
}