diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-09-28 22:12:27 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-09-28 22:12:27 -0700 |
commit | 18287a365693d0607be76091679cb45dc2748a6f (patch) | |
tree | 213bc6b735e7c25a1401d565fa60dcae2424ea12 /mod/network.php | |
parent | dd3f754e235e286207ee638e75c601ca1e809936 (diff) | |
download | volse-hubzilla-18287a365693d0607be76091679cb45dc2748a6f.tar.gz volse-hubzilla-18287a365693d0607be76091679cb45dc2748a6f.tar.bz2 volse-hubzilla-18287a365693d0607be76091679cb45dc2748a6f.zip |
show lockstate on messages, sparkle failure on profile page,
comments on typo checker
Diffstat (limited to 'mod/network.php')
-rw-r--r-- | mod/network.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mod/network.php b/mod/network.php index 1634a0f06..b0daecac4 100644 --- a/mod/network.php +++ b/mod/network.php @@ -173,6 +173,13 @@ function network_content(&$a, $update = 0) { if((($item['verb'] == ACTIVITY_LIKE) || ($item['verb'] == ACTIVITY_DISLIKE)) && ($item['id'] != $item['parent'])) continue; + + $lock = (($item['uid'] == get_uid()) && (strlen($item['allow_cid']) || strlen($item['allow_gid']) + || strlen($item['deny_cid']) || strlen($item['deny_gid'])) + ? '<div class="wall-item-lock"><img src="images/lock_icon.gif" alt="Private Message" /></div>' + : '<div class="wall-item-lock"></div>'); + + // Top-level wall post not written by the wall owner (wall-to-wall) // First figure out who owns it. @@ -279,6 +286,7 @@ function network_content(&$a, $update = 0) { '$title' => $item['title'], '$body' => bbcode($item['body']), '$ago' => relative_date($item['created']), + '$lock' => $lock, '$location' => (($item['location']) ? '<a target="map" href="http://maps.google.com/?q=' . urlencode($item['location']) . '">' . $item['location'] . '</a>' : ''), '$indent' => (($item['parent'] != $item['item_id']) ? ' comment' : ''), '$owner_url' => $owner_url, |