From ac824fe83e67950f9303d13d574ff00b57dd5727 Mon Sep 17 00:00:00 2001 From: Mike Macgirvin Date: Mon, 18 Oct 2010 14:34:59 -0700 Subject: eradicate redundant get_uid function --- mod/display.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mod/display.php') diff --git a/mod/display.php b/mod/display.php index 2b721aef8..fefef8ad6 100644 --- a/mod/display.php +++ b/mod/display.php @@ -57,7 +57,7 @@ function display_content(&$a) { // Profile owner - everything is visible - if(local_user() && (get_uid() == $a->profile['uid'])) { + if(local_user() && (local_user() == $a->profile['uid'])) { $sql_extra = ''; } @@ -149,7 +149,7 @@ function display_content(&$a) { 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']) + $lock = (($item['uid'] == local_user()) && (strlen($item['allow_cid']) || strlen($item['allow_gid']) || strlen($item['deny_cid']) || strlen($item['deny_gid'])) ? '
' . t('Private Message') . '
' : '
'); @@ -222,7 +222,7 @@ function display_content(&$a) { $profile_avatar = ((strlen($item['author-avatar'])) ? $item['author-avatar'] : $item['thumb']); $profile_link = $profile_url; - if(($item['contact-id'] == $_SESSION['visitor_id']) || ($item['uid'] == get_uid())) + if(($item['contact-id'] == $_SESSION['visitor_id']) || ($item['uid'] == local_user())) $drop = replace_macros(load_view_file('view/wall_item_drop.tpl'), array('$id' => $item['id'])); else $drop = replace_macros(load_view_file('view/wall_fake_drop.tpl'), array('$id' => $item['id'])); -- cgit v1.2.3