show members of locked conversations

This commit is contained in:
Mike Macgirvin
2010-09-29 22:11:26 -07:00
parent d2ecdd0668
commit dda5195418
8 changed files with 135 additions and 13 deletions

View File

@@ -309,12 +309,9 @@ function profile_content(&$a, $update = 0) {
$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"><img src="images/lock_icon.gif" class="lockview" alt="' . t('Private Message') . '" onclick="lockview(event,' . $item['id'] . ');" /></div>'
: '<div class="wall-item-lock"></div>');
if(can_write_wall($a,$a->profile['profile_uid'])) {
if($item['id'] == $item['parent']) {
$likebuttons = replace_macros($like_tpl,array('$id' => $item['id']));