diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-21 13:25:30 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-21 13:25:30 +0000 |
commit | f8c67ae94a730eeea673c5ef942c55094fbb5825 (patch) | |
tree | 6a6e9ce2961f6cf463ac6682ddbf127209e47a86 /mod | |
parent | 9eae841ec5c036fa74565a3a06e6f53f2dc80af4 (diff) | |
download | elgg-f8c67ae94a730eeea673c5ef942c55094fbb5825.tar.gz elgg-f8c67ae94a730eeea673c5ef942c55094fbb5825.tar.bz2 |
removed call to deprecated page_owner()
git-svn-id: http://code.elgg.org/elgg/trunk@7398 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod')
-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 65144b7bb..5f1bc3400 100644 --- a/mod/file/index.php +++ b/mod/file/index.php @@ -36,7 +36,7 @@ } //get the latest comments on the current users files - $comments = get_annotations(0, "object", "file", "generic_comment", "", 0, 4, 0, "desc",0,0,page_owner()); + $comments = get_annotations(0, "object", "file", "generic_comment", "", 0, 4, 0, "desc",0,0,elgg_get_page_owner_guid()); $area3 = elgg_view('annotation/latest_comments', array('comments' => $comments)); $content = "<div class='files'>".$area1.$area2."</div>"; |