Wall message can now redirect to your own page if you are connected.
This commit is contained in:
parent
77f7619720
commit
0a617da044
|
@ -246,10 +246,23 @@ function profile_sidebar($profile, $block = 0) {
|
||||||
else
|
else
|
||||||
$subscribe_feed = false;
|
$subscribe_feed = false;
|
||||||
|
|
||||||
if(get_my_url() && $profile['unkmail'] && ($profile['uid'] != local_user()))
|
if(get_my_url() && $profile['unkmail'] && ($profile['uid'] != local_user())) {
|
||||||
$wallmessage = t('Message');
|
$wallmessage = t('Message');
|
||||||
else
|
|
||||||
|
$r = q("SELECT `id` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' AND `rel` = %d",
|
||||||
|
intval($profile['uid']),
|
||||||
|
dbesc(normalise_link(get_my_url())),
|
||||||
|
intval(CONTACT_IS_FRIEND));
|
||||||
|
if ($r) {
|
||||||
|
$message_path = preg_replace("=(.*)/profile/(.*)=ism", "$1/message/new/", get_my_url());
|
||||||
|
$wallmessage_link = $message_path.base64_encode(get_my_url());
|
||||||
|
} else
|
||||||
|
$wallmessage_link = "wallmessage/".$profile["nickname"];
|
||||||
|
|
||||||
|
} else {
|
||||||
$wallmessage = false;
|
$wallmessage = false;
|
||||||
|
$wallmessage_link = false;
|
||||||
|
}
|
||||||
|
|
||||||
// show edit profile to yourself
|
// show edit profile to yourself
|
||||||
if ($profile['uid'] == local_user() && feature_enabled(local_user(),'multi_profiles')) {
|
if ($profile['uid'] == local_user() && feature_enabled(local_user(),'multi_profiles')) {
|
||||||
|
@ -386,6 +399,7 @@ function profile_sidebar($profile, $block = 0) {
|
||||||
'$remoteconnect' => $remoteconnect,
|
'$remoteconnect' => $remoteconnect,
|
||||||
'$subscribe_feed' => $subscribe_feed,
|
'$subscribe_feed' => $subscribe_feed,
|
||||||
'$wallmessage' => $wallmessage,
|
'$wallmessage' => $wallmessage,
|
||||||
|
'$wallmessage_link' => $wallmessage_link,
|
||||||
'$account_type' => $account_type,
|
'$account_type' => $account_type,
|
||||||
'$location' => $location,
|
'$location' => $location,
|
||||||
'$gender' => $gender,
|
'$gender' => $gender,
|
||||||
|
@ -400,7 +414,6 @@ function profile_sidebar($profile, $block = 0) {
|
||||||
'$contact_block' => $contact_block,
|
'$contact_block' => $contact_block,
|
||||||
));
|
));
|
||||||
|
|
||||||
|
|
||||||
$arr = array('profile' => &$profile, 'entry' => &$o);
|
$arr = array('profile' => &$profile, 'entry' => &$o);
|
||||||
|
|
||||||
call_hooks('profile_sidebar', $arr);
|
call_hooks('profile_sidebar', $arr);
|
||||||
|
|
|
@ -305,15 +305,29 @@ function message_content(&$a) {
|
||||||
$prename = $preurl = $preid = '';
|
$prename = $preurl = $preid = '';
|
||||||
|
|
||||||
if($preselect) {
|
if($preselect) {
|
||||||
$r = q("select name, url, id from contact where uid = %d and id = %d limit 1",
|
$r = q("SELECT `name`, `url`, `id` FROM `contact` WHERE `uid` = %d AND `id` = %d LIMIT 1",
|
||||||
intval(local_user()),
|
intval(local_user()),
|
||||||
intval($a->argv[2])
|
intval($a->argv[2])
|
||||||
);
|
);
|
||||||
|
if(!$r) {
|
||||||
|
$r = q("SELECT `name`, `url`, `id` FROM `contact` WHERE `uid` = %d AND `nurl` = '%s' LIMIT 1",
|
||||||
|
intval(local_user()),
|
||||||
|
dbesc(normalise_link(base64_decode($a->argv[2])))
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if(!$r) {
|
||||||
|
$r = q("SELECT `name`, `url`, `id` FROM `contact` WHERE `uid` = %d AND `addr` = '%s' LIMIT 1",
|
||||||
|
intval(local_user()),
|
||||||
|
dbesc(base64_decode($a->argv[2]))
|
||||||
|
);
|
||||||
|
}
|
||||||
if(count($r)) {
|
if(count($r)) {
|
||||||
$prename = $r[0]['name'];
|
$prename = $r[0]['name'];
|
||||||
$preurl = $r[0]['url'];
|
$preurl = $r[0]['url'];
|
||||||
$preid = $r[0]['id'];
|
$preid = $r[0]['id'];
|
||||||
}
|
$preselect = array($preid);
|
||||||
|
} else
|
||||||
|
$preselect = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
$prefill = (($preselect) ? $prename : '');
|
$prefill = (($preselect) ? $prename : '');
|
||||||
|
@ -342,7 +356,6 @@ function message_content(&$a) {
|
||||||
'$wait' => t('Please wait'),
|
'$wait' => t('Please wait'),
|
||||||
'$submit' => t('Submit')
|
'$submit' => t('Submit')
|
||||||
));
|
));
|
||||||
|
|
||||||
return $o;
|
return $o;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -54,7 +54,7 @@
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{if $wallmessage}}
|
{{if $wallmessage}}
|
||||||
<li><a id="wallmessage-link" href="wallmessage/{{$profile.nickname}}">{{$wallmessage}}</a></li>
|
<li><a id="wallmessage-link" href="{{$wallmessage_link}}">{{$wallmessage}}</a></li>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{if $subscribe_feed}}
|
{{if $subscribe_feed}}
|
||||||
<li><a id="subscribe-feed-link" href="dfrn_poll/{{$profile.nickname}}">{{$subscribe_feed}}</a></li>
|
<li><a id="subscribe-feed-link" href="dfrn_poll/{{$profile.nickname}}">{{$subscribe_feed}}</a></li>
|
||||||
|
|
|
@ -65,7 +65,7 @@
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{if $wallmessage}}
|
{{if $wallmessage}}
|
||||||
<li><a id="wallmessage-link" href="wallmessage/{{$profile.nickname}}">{{$wallmessage}}</a></li>
|
<li><a id="wallmessage-link" href="{{$wallmessage_link}}">{{$wallmessage}}</a></li>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{if $subscribe_feed}}
|
{{if $subscribe_feed}}
|
||||||
<li><a id="subscribe-feed-link" href="dfrn_poll/{{$profile.nickname}}">{{$subscribe_feed}}</a></li>
|
<li><a id="subscribe-feed-link" href="dfrn_poll/{{$profile.nickname}}">{{$subscribe_feed}}</a></li>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user