diff options
Diffstat (limited to 'mod')
-rw-r--r-- | mod/dfrn_confirm.php | 1 | ||||
-rw-r--r-- | mod/profile_photo.php | 1 | ||||
-rw-r--r-- | mod/tagger.php | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/mod/dfrn_confirm.php b/mod/dfrn_confirm.php index 180e8ff31..ce6f4f95f 100644 --- a/mod/dfrn_confirm.php +++ b/mod/dfrn_confirm.php @@ -446,6 +446,7 @@ function dfrn_confirm_post(&$a,$handsfree = null) { $arr['wall'] = 1; $arr['type'] = 'wall'; $arr['gravity'] = 0; + $arr['origin'] = 1; $arr['author-name'] = $arr['owner-name'] = $self[0]['name']; $arr['author-link'] = $arr['owner-link'] = $self[0]['url']; $arr['author-avatar'] = $arr['owner-avatar'] = $self[0]['thumb']; diff --git a/mod/profile_photo.php b/mod/profile_photo.php index 47f0f8d8e..e3dbdaf39 100644 --- a/mod/profile_photo.php +++ b/mod/profile_photo.php @@ -86,6 +86,7 @@ function profile_photo_post(&$a) { intval(local_user()) ); + info( t('Shift-reload the page or clear browser cache if the new photo does not display immediately.') . EOL); // Update global directory in background $url = $a->get_baseurl() . '/profile/' . $a->user['nickname']; if($url && strlen(get_config('system','directory_submit_url'))) diff --git a/mod/tagger.php b/mod/tagger.php index 9e458a5b7..76ec3366c 100644 --- a/mod/tagger.php +++ b/mod/tagger.php @@ -105,7 +105,7 @@ EOT; if(! isset($bodyverb)) return; - $termlink = '⌗[url=' . $a->get_baseurl() . '/search?search=' . urlencode($term) . ']'. $term . '[/url]'; + $termlink = html_entity_decode('⌗') . '[url=' . $a->get_baseurl() . '/search?search=' . urlencode($term) . ']'. $term . '[/url]'; $arr = array(); |