]> git.mxchange.org Git - friendica.git/blobdiff - mod/display.php
Merge pull request #608 from fermionic/20130204-diabook-reduce-css
[friendica.git] / mod / display.php
index 2ac1c369ebc33cc2852a25b6573d7fbe236e4ed4..57a329f305da6c8fd50aa0af358fc79572057294 100644 (file)
@@ -112,8 +112,9 @@ function display_content(&$a, $update = 0) {
                        'acl' => populate_acl($a->user, $celeb),
                        'bang' => '',
                        'visitor' => 'block',
-                       'profile_uid' => local_user()
-               );      
+                       'profile_uid' => local_user(),
+                       'acl_data' => construct_acl_data($a, $a->user), // For non-Javascript ACL selector
+               );
                $o .= status_editor($a,$x,0,true);
        }
 
@@ -121,7 +122,6 @@ function display_content(&$a, $update = 0) {
 
        if($update) {
 
-dbg(1);
                $r = q("SELECT id FROM item WHERE item.uid = %d
                        AND `item`.`parent` = ( SELECT `parent` FROM `item` WHERE ( `id` = '%s' OR `uri` = '%s' ))
                        $sql_extra AND unseen = 1",
@@ -129,7 +129,7 @@ dbg(1);
                        dbesc($item_id),
                        dbesc($item_id) 
                );
-dbg(0);
+
                if(!$r)
                        return '';
        }