diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-20 00:30:29 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-20 00:30:29 +0000 |
commit | 14a131e73eca92bb216ffad468a18c4a28ee35c2 (patch) | |
tree | e4e58b60f3c8f1705552f7142b13d498df2c4c17 /engine/lib | |
parent | 3d3b7572a25ca7cfd582d1d432646944e522aee3 (diff) | |
download | elgg-14a131e73eca92bb216ffad468a18c4a28ee35c2.tar.gz elgg-14a131e73eca92bb216ffad468a18c4a28ee35c2.tar.bz2 |
added the core river to the tabbed profile plugin and fixed some deprecated function warnings
git-svn-id: http://code.elgg.org/elgg/trunk@7697 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib')
-rw-r--r-- | engine/lib/views.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/views.php b/engine/lib/views.php index 1f02d29d2..5214e96c3 100644 --- a/engine/lib/views.php +++ b/engine/lib/views.php @@ -1043,7 +1043,7 @@ function elgg_view_image_block($image, $body, $vars = array()) { */ function elgg_view_listing($icon, $info) { elgg_deprecated_notice('elgg_view_listing deprecated by elgg_view_image_block', 1.8); - return elgg_view('layout/objects/media', array('icon' => $icon, 'body' => $info)); + return elgg_view('layout/objects/image_block', array('image' => $icon, 'body' => $info)); } /** |