aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/contact_widgets.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/contact_widgets.php b/include/contact_widgets.php
index c6f3168fe..bf3a86958 100644
--- a/include/contact_widgets.php
+++ b/include/contact_widgets.php
@@ -147,7 +147,8 @@ function common_friends_visitor_widget($profile_uid) {
else {
if(get_my_url()) {
$r = q("select id from contact where nurl = '%s' and uid = %d limit 1",
- dbesc(normalise_link(get_my_url()))
+ dbesc(normalise_link(get_my_url())),
+ intval($profile_uid)
);
if(count($r))
$cid = $r[0]['id'];