From 56cb6f1034b36dca0cd91bc51c491bb2fe5809ef Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 2 Aug 2024 16:02:29 +0000 Subject: streamline location rendering --- include/conversation.php | 12 ++++++++---- view/tpl/conv_item.tpl | 8 ++++---- view/tpl/conv_list.tpl | 8 ++++---- view/tpl/jot.tpl | 8 ++++---- view/tpl/search_item.tpl | 8 ++++---- 5 files changed, 24 insertions(+), 20 deletions(-) diff --git a/include/conversation.php b/include/conversation.php index e4b39d5b1..b3ba96a82 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1467,14 +1467,18 @@ function render_location_default($item) { $location = $item['location']; $coord = $item['coord']; - if($coord) { + if ($coord) { if($location) - $location .= ' (' . $coord . ')'; + $location .= ' (' . $coord . ')'; else - $location = '' . $coord . ''; + $location = $coord; } - return $location; + if (!$location) { + return ''; + } + + return ''; } diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl index b0077e09b..af212608a 100644 --- a/view/tpl/conv_item.tpl +++ b/view/tpl/conv_item.tpl @@ -29,14 +29,14 @@
- {{if $item.editedtime}} - + {{if $item.location}} + {{$item.location}} {{/if}} {{if $item.delayed}} {{/if}} - {{if $item.location}} - {{$item.location}} + {{if $item.editedtime}} + {{/if}} {{if $item.verified}} diff --git a/view/tpl/conv_list.tpl b/view/tpl/conv_list.tpl index 3188433d3..388a952f2 100644 --- a/view/tpl/conv_list.tpl +++ b/view/tpl/conv_list.tpl @@ -23,14 +23,14 @@
- {{if $item.editedtime}} - + {{if $item.location}} + {{$item.location}} {{/if}} {{if $item.delayed}} {{/if}} - {{if $item.location}} - {{$item.location}} + {{if $item.editedtime}} + {{/if}} {{if $item.verified}} diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl index 965cd975c..4eee6f1ac 100644 --- a/view/tpl/jot.tpl +++ b/view/tpl/jot.tpl @@ -138,12 +138,12 @@
{{if $setloc}} {{/if}} {{if $clearloc}} {{/if}} {{else}} @@ -193,10 +193,10 @@  {{$embedPhotos}} {{/if}} {{if $setloc}} -  {{$setloc}} +  {{$setloc}} {{/if}} {{if $clearloc}} -  {{$clearloc}} +  {{$clearloc}} {{/if}} {{/if}} {{if $feature_expire}} diff --git a/view/tpl/search_item.tpl b/view/tpl/search_item.tpl index 8d76f6ac4..07d20b9ec 100644 --- a/view/tpl/search_item.tpl +++ b/view/tpl/search_item.tpl @@ -23,14 +23,14 @@
- {{if $item.editedtime}} - + {{if $item.location}} + {{$item.location}} {{/if}} {{if $item.delayed}} {{/if}} - {{if $item.location}} - {{$item.location}} + {{if $item.editedtime}} + {{/if}} {{if $item.verified}} -- cgit v1.2.3