aboutsummaryrefslogtreecommitdiffstats
path: root/mod/display.php
diff options
context:
space:
mode:
authorFabio Comuni <fabrix.xm@gmail.com>2012-02-13 09:33:20 +0100
committerFabio Comuni <fabrix.xm@gmail.com>2012-02-13 09:33:20 +0100
commit3e664dbdfe4a7b0d27a7dd317ab7e85853822275 (patch)
treea26cc566363d2f9675cd99d7ba991b83870b72ec /mod/display.php
parented38808aae6585bb6c31a18788f0290812bae2f8 (diff)
downloadvolse-hubzilla-3e664dbdfe4a7b0d27a7dd317ab7e85853822275.tar.gz
volse-hubzilla-3e664dbdfe4a7b0d27a7dd317ab7e85853822275.tar.bz2
volse-hubzilla-3e664dbdfe4a7b0d27a7dd317ab7e85853822275.zip
reshare in "display" view
Diffstat (limited to 'mod/display.php')
-rwxr-xr-xmod/display.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/mod/display.php b/mod/display.php
index 79eaf3717..d96be4333 100755
--- a/mod/display.php
+++ b/mod/display.php
@@ -11,6 +11,7 @@ function display_content(&$a) {
require_once("include/bbcode.php");
require_once('include/security.php');
require_once('include/conversation.php');
+ require_once('include/acl_selectors.php');
$o = '<div id="live-display"></div>' . "\r\n";
@@ -68,6 +69,19 @@ function display_content(&$a) {
}
if ($is_owner)
+ $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
+
+ $x = array(
+ 'is_owner' => true,
+ 'allow_location' => $a->user['allow_location'],
+ 'default_location' => $a->user['default_location'],
+ 'nickname' => $a->user['nickname'],
+ 'lockstate' => ((($group) || (is_array($a->user) && ((strlen($a->user['allow_cid'])) || (strlen($a->user['allow_gid'])) || (strlen($a->user['deny_cid'])) || (strlen($a->user['deny_gid']))))) ? 'lock' : 'unlock'),
+ 'acl' => populate_acl((($group || $cid) ? $def_acl : $a->user), $celeb),
+ 'bang' => (($group || $cid) ? '!' : ''),
+ 'visitor' => 'block',
+ 'profile_uid' => local_user()
+ );
$o .= status_editor($a,$x,0,true);