diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-13 16:41:51 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-13 16:41:51 +0000 |
commit | 61fac594920e39df1dcde3c3d8ecfd4a4a31d340 (patch) | |
tree | 290568b0fa63093e1e8a596d4efbb554b1162de9 /mod/file/index.php | |
parent | f557a558e93f6a0bd5cdda958895edb391d50060 (diff) | |
download | elgg-61fac594920e39df1dcde3c3d8ecfd4a4a31d340.tar.gz elgg-61fac594920e39df1dcde3c3d8ecfd4a4a31d340.tar.bz2 |
fixed typo in file index.php
git-svn-id: http://code.elgg.org/elgg/trunk@8681 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/file/index.php')
-rw-r--r-- | mod/file/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/file/index.php b/mod/file/index.php index 44382ce02..617e4c7f4 100644 --- a/mod/file/index.php +++ b/mod/file/index.php @@ -21,7 +21,7 @@ if ($owner->guid == elgg_get_logged_in_user_guid()) { $params['filter_context'] = 'mine'; } else if (elgg_instanceof($owner, 'user')) { // someone else's files - $title = elgg_echo("file:user", array($owner()->name)); + $title = elgg_echo("file:user", array($owner->name)); // do not show button or select a tab when viewing someone else's posts $params['filter_context'] = 'none'; $params['buttons'] = ''; |