diff options
author | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-04-02 08:26:53 +0000 |
---|---|---|
committer | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-04-02 08:26:53 +0000 |
commit | c807d40facfc79a20668e8c4e53c1e7204355a56 (patch) | |
tree | f916c566623af6d5db370f9258eba94b20c4d08e /mod/bookmarks/all.php | |
parent | 0049edf985e6aad1963d5bfcd2a245dbc7b4e299 (diff) | |
download | elgg-c807d40facfc79a20668e8c4e53c1e7204355a56.tar.gz elgg-c807d40facfc79a20668e8c4e53c1e7204355a56.tar.bz2 |
bookmark stats now correct, missing strings applied and a function call moved out of the view.
git-svn-id: http://code.elgg.org/elgg/trunk@5574 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/bookmarks/all.php')
-rw-r--r-- | mod/bookmarks/all.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mod/bookmarks/all.php b/mod/bookmarks/all.php index 88258c855..a4bdae7af 100644 --- a/mod/bookmarks/all.php +++ b/mod/bookmarks/all.php @@ -28,7 +28,8 @@ if(isloggedin()){ $area3 .= elgg_view("bookmarks/bookmarklet"); } // include statistics -$area3 .= elgg_view("bookmarks/stats"); +$count = elgg_get_entities(array('type' => 'object', 'subtype' => 'bookmarks', 'count' => true)); +$area3 .= elgg_view("bookmarks/stats", array('count' => $count)); // Format page $body = elgg_view_layout('one_column_with_sidebar', $area1.$area2, $area3); |