aboutsummaryrefslogtreecommitdiffstats
path: root/include/conversation.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-02-02 16:34:00 -0800
committerfriendica <info@friendica.com>2013-02-02 16:34:00 -0800
commitb41106f2fbebfd0bbc2bfc70efd3421073469f44 (patch)
tree9412d4081bf49dfe5a2e064047cabc633a65fde6 /include/conversation.php
parent09ece497f7211bf65aa026894fec22dd1605a20c (diff)
downloadvolse-hubzilla-b41106f2fbebfd0bbc2bfc70efd3421073469f44.tar.gz
volse-hubzilla-b41106f2fbebfd0bbc2bfc70efd3421073469f44.tar.bz2
volse-hubzilla-b41106f2fbebfd0bbc2bfc70efd3421073469f44.zip
allow non-linkable locations, self-linked locations and get rid of google default location link
Diffstat (limited to 'include/conversation.php')
-rw-r--r--include/conversation.php27
1 files changed, 20 insertions, 7 deletions
diff --git a/include/conversation.php b/include/conversation.php
index 524b4340c..200e876d9 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -548,10 +548,7 @@ function conversation(&$a, $items, $mode, $update, $page_mode = 'traditional') {
$profile_avatar = $item['author']['xchan_photo_m'];
- $locate = array('location' => $item['location'], 'coord' => $item['coord'], 'html' => '');
- call_hooks('render_location',$locate);
-
- $location = ((strlen($locate['html'])) ? $locate['html'] : render_location_google($locate));
+ $location = format_location($item);
localize_item($item);
if($mode === 'network-new')
@@ -1085,9 +1082,25 @@ function find_thread_parent_index($arr,$x) {
return false;
}
-function render_location_google($item) {
- $location = (($item['location']) ? '<a target="map" title="' . $item['location'] . '" href="http://maps.google.com/?q=' . urlencode($item['location']) . '">' . $item['location'] . '</a>' : '');
- $coord = (($item['coord']) ? '<a target="map" title="' . $item['coord'] . '" href="http://maps.google.com/?q=' . urlencode($item['coord']) . '">' . $item['coord'] . '</a>' : '');
+function format_location($item) {
+
+ if(strpos($item['location'],'#') === 0) {
+ $location = substr($item['location'],1);
+ $location = ((strpos($location,'[') !== false) ? bbcode($location) : $location);
+ }
+ else {
+ $locate = array('location' => $item['location'], 'coord' => $item['coord'], 'html' => '');
+ call_hooks('render_location',$locate);
+ $location = ((strlen($locate['html'])) ? $locate['html'] : render_location_default($locate));
+ }
+ return $location;
+}
+
+function render_location_default($item) {
+
+ $location = $item['location'];
+ $coord = $item['coord'];
+
if($coord) {
if($location)
$location .= '<br /><span class="smalltext">(' . $coord . ')</span>';