]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
preparing for a bug to be fixed in Elgg with the fullview parameter
authorCash Costello <cash.costello@gmail.com>
Thu, 3 Sep 2009 23:58:30 +0000 (23:58 +0000)
committerCash Costello <cash.costello@gmail.com>
Thu, 3 Sep 2009 23:58:30 +0000 (23:58 +0000)
pages/ownedalbums.php
pages/tagged.php
pages/world.php

index a2802021610b947e49f3eef305766529b08b4fe3..c3dc54d2439d17563fb107293394d307312fffdd 100644 (file)
@@ -39,9 +39,9 @@
        set_context('search');\r
        set_input('search_viewtype', 'gallery');\r
        if ($owner instanceof ElggGroup)\r
-               $area2 .= list_entities("object", "album", $owner->guid, 12);\r
+               $area2 .= list_entities("object", "album", $owner->guid, 12, false);\r
        else\r
-               $area2 .= list_entities("object", "album", $owner->guid, 12);\r
+               $area2 .= list_entities("object", "album", $owner->guid, 12, false);\r
        \r
        set_context('photos');\r
        $body = elgg_view_layout('two_column_left_sidebar', '', $area2);\r
index 0bc562f5b609c51294e954381612a525b97fbb3a..fb07b392cdad390010f65d908d8633858a8dbc57 100644 (file)
@@ -25,7 +25,7 @@
        \r
        set_context('search');\r
        set_input('search_viewtype', 'gallery'); // need to force gallery view\r
-       $body .= list_entities_from_relationship('phototag', $guid, false, 'object', 'image'); \r
+       $body .= list_entities_from_relationship('phototag', $guid, false, 'object', 'image', 0, 10, false); \r
 \r
        // Set up submenus\r
        if (isloggedin()) {\r
index d88ab19696a9d159689bb3595d75efb5626856f0..514fd058c0dcfea5119548b5be9d2ef7ddb16c59 100644 (file)
@@ -15,7 +15,7 @@
        \r
        set_context('search');\r
        set_input('search_viewtype', 'gallery');\r
-       $albums_html .= list_entities('object','album', 0, $num_albums);\r
+       $albums_html .= list_entities('object','album', 0, $num_albums, false);\r
 \r
        \r
        $area2 .= $albums_html;\r